5 lines
120 B
Dart
5 lines
120 B
Dart
extension StringNotNull on String? {
|
|
bool get notNull => this != null && this != '';
|
|
|
|
bool get isNull => !notNull;
|
|
} |