Checkbox List Tile
A representation of Checkbox.
NikuCheckboxListTile
accepts all the props as same as CheckboxListTile.
dart
// Using namespace
n.CheckboxListTile(true);
// Using Niku Prefix
NikuCheckboxListTile(true);
Example Usage
dart
n.CheckboxListTile(true)
..title = "Title".n
..subtitle = "This is a subtitle".n
..activeColor = Colors.red
..onChanged = handleChange;