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

A Dart lib, Cool? Try use.

example/example.dart

import 'package:alm/alm.dart';

void main() {
  print(Alm.version);
  //...
  ///
  print({}.isMap); //true
  print([].isMap); //false
  //
  print(null.isMap); //false
  //
  var map = {'alm': 2, 'foo': 3};
  '# check keys'.printAsTitle();
  print(map.has('alm')); //true
  print(map.has(['alm', 'foo'])); //true
  print(map.has('slm')); //false
  //
  '# check key val'.printAsTitle();
  print(map.has('alm', 2)); //true
  print(map.has('foo', 3.1)); //false
  //
  // //...

  '# check timers'.printAsTitle();

  print(Alm.duration.between('08:00:00','18:00:00'));
}
1
likes
20
pub points
3%
popularity

Publisher

unverified uploader

A Dart lib, Cool? Try use.

Homepage

License

unknown (LICENSE)

Dependencies

convert, crypto, http, http_parser, image, mime

More

Packages that depend on alm