CheckItem constructor

CheckItem({
  1. String? name,
  2. bool value = false,
  3. String shape = 'round',
  4. String? text,
  5. bool disabled = false,
  6. double iconSize = Style.checkboxSize,
  7. Color checkedColor = Style.checkboxCheckedIconColor,
})

Implementation

CheckItem(
    {this.name,
    this.value: false,
    this.shape: 'round',
    this.text,
    this.disabled: false,
    this.iconSize: Style.checkboxSize,
    this.checkedColor: Style.checkboxCheckedIconColor});