boolean 1.0.1 copy "boolean: ^1.0.1" to clipboard
boolean: ^1.0.1 copied to clipboard

Extension functions on strings and numbers to convert them to bools.

Utility functions to convert strings and numbers to bools.

Usage #

A simple usage example:

import 'package:boolean/boolean.dart';

void main() {
  print('true'.asBool()); //true
  print(1.asBool()); //true

  print('abc'.asBool()); //false
  print(0.asBool()); //false
}

Created from templates made available by Stagehand under a BSD-style license.

1
likes
40
pub points
22%
popularity

Publisher

unverified uploader

Extension functions on strings and numbers to convert them to bools.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

More

Packages that depend on boolean