Clever Util

style: very good analysis Powered by Mason License: MIT

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
}

Libraries

clever_util
A utility library that simplifies using many patterns.
random
A library for utilities for probability.