SwichCheck constructor

const SwichCheck({
  1. Key? key,
  2. required bool value,
  3. required dynamic onChanged(
    1. bool
    ),
  4. String? titulo,
  5. Color? colorOk,
  6. Color? colorNok,
})

Switch en Android y en iOS

Implementation

const SwichCheck({
  super.key,
  required this.value,
  required this.onChanged,
  this.titulo,
  this.colorOk,
  this.colorNok,
});