Showing
1 changed file
with
1 additions
and
3 deletions
1 | -import 'dart:developer'; | ||
2 | - | ||
3 | import '../../../utils.dart'; | 1 | import '../../../utils.dart'; |
4 | import '../regex/get_utils.dart'; | 2 | import '../regex/get_utils.dart'; |
5 | 3 | ||
@@ -10,7 +8,7 @@ extension GetDynamicUtils on dynamic { | @@ -10,7 +8,7 @@ extension GetDynamicUtils on dynamic { | ||
10 | bool get isNull => GetUtils.isNull(this); | 8 | bool get isNull => GetUtils.isNull(this); |
11 | 9 | ||
12 | bool get isNullOrBlank => GetUtils.isNullOrBlank(this); | 10 | bool get isNullOrBlank => GetUtils.isNullOrBlank(this); |
13 | - | 11 | + |
14 | void logError({String info = ''}) => | 12 | void logError({String info = ''}) => |
15 | GetUtils.log('Error: ${this.runtimeType}', this, info); | 13 | GetUtils.log('Error: ${this.runtimeType}', this, info); |
16 | 14 |
-
Please register or login to post a comment