readable 1.0.0 copy "readable: ^1.0.0" to clipboard
readable: ^1.0.0 copied to clipboard

extensions and helpers for dart to save time , make the code more readable and smaller

Readable #

a collection of helpers and extension for dart & flutter

License: MIT Issues Style: lint Maintained with Melos

Example #

  /// Before ::
  final width = MediaQuery.of(context).size.width;
  /// After::
  final width = context.width;

  final data = [1,2,3,4,5];
  
  final total = data.sum(); // 15

  final minimNumber = data.min(); // 1

  final maximumNumber = data.max(); // 5

  final average = data.average(); // 3
 

all helpers #

with dart see Documentation

with flutter see Documentation

11
likes
140
pub points
70%
popularity

Publisher

verified publishermaxzod.com

extensions and helpers for dart to save time , make the code more readable and smaller

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on readable