flex 0.1.0 flex: ^0.1.0 copied to clipboard
A collection of classes, extensions and utilities to aid faster development.
Flex Example #
The following is a basic example of some features provided by Flex.
import 'package:flex/flex.dart';
Future<void> main(List<String> arguments) async {
final name = await prompt<String>('What is your name?');
print(r'Hello, $name'.fillTemplate({'name': name}));
}