clever_util 1.0.0 clever_util: ^1.0.0 copied to clipboard
A utility dart library that simplifies using many patterns.
Clever Util #
A utility dart library that simplifies using many patterns.
Usage #
Import the library.
import 'package:clever_util/clever_util.dart';
Use the methods of the library.
void main(List<String> args) {
// Working with Strings
'hello world'.isNotBlank; // true
' '.isNotBlank; // false
null.isNotBlank; // false
}