maid 0.0.3 maid: ^0.0.3 copied to clipboard
Maids handle your chores. By focusing on the most duplicated and messy parts of your code, maid was designed to make your life easier.
Maid #
Maids handle your chores.
Features #
- [ControllerMaid] works like other controller but lighter and focus on easy-access.
- [SingletonMaid] provides an noninvasive way to create singleton for other class.
- ...More maids are coming soon ™️
Getting started #
Add maid
to your pubspec.yaml
.
dart pub add maid
Include it in your code.
import 'package:maid/maid.dart';
Usage #
var maid = Maids.control(42);
maid.serve(); //42
maid.take(233); //42
maid.serve() //233
For more usage, see examples.