checkBox abstract method

Widget checkBox({
  1. String? label,
  2. bool selected = false,
  3. void onStateChange(
    1. bool
    ),
  4. bool isIndeterminate = false,
  5. ItemSize size = ItemSize.medium,
  6. bool emphasis = false,
  7. bool disabled = false,
  8. bool isReadOnly = false,
  9. bool isError = false,
})

Implementation

Widget checkBox({
  String? label,
  bool selected = false,
  void Function(bool) onStateChange,
  bool isIndeterminate = false,
  ItemSize size = ItemSize.medium,
  bool emphasis = false,
  bool disabled = false,
  bool isReadOnly = false,
  bool isError = false,
});