| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : extension NullableStringExtension on String? { 2 0 : bool get isNullOrEmpty => this?.isEmpty ?? true; 3 : 4 0 : bool get isNotNullAndNotEmpty => !isNullOrEmpty; 5 : 6 3 : bool get isNullOrBlank => this?.trim().isEmpty ?? true; 7 : 8 0 : bool get isNotNullAndNotBlank => !isNullOrBlank; 9 : } |
| Generated by: LCOV version 2.0-1 |