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

outdated

Filter all non-null values in a Dart list.

children #

Build Status

Filter all non-null values in a Dart list.

Usage #

A simple usage example:

import 'package:children/children.dart';

main() {
  var originalList = [
    "There",
    "should",
    "not",
    "be",
    "any",
    null,
    "in",
    "list"
  ];
  var filteredList = children(originalList);
  print('originalList: ${originalList}');
  print('filteredList: ${filteredList}');
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Filter all non-null values in a Dart list.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on children