fluartx 0.0.3 copy "fluartx: ^0.0.3" to clipboard
fluartx: ^0.0.3 copied to clipboard

discontinued
outdated

extensions for flutter and dart.

A library for Flutter/Dart api extensions.

Usage #

A simple usage example:

import 'package:fluartx/fluartx.dart';

main() {
  <Object>[1, "B", 3, "D"]
      .where(Predicates.instanceOf(String))
      .map(Transformers.forMap({"B": 2, "D": 4}))
      .toList();
}