MycheckboxStateless constructor

MycheckboxStateless({
  1. Key? key,
  2. bool initVal = true,
  3. ValueChanged<bool>? onChange,
  4. bool isDisabled = false,
  5. num size = 20,
  6. num? height,
  7. String? iconH = 'ic_check_box_h.png',
  8. String? iconN = 'ic_check_box_n.png',
  9. num innerPadding = 0,
})

Implementation

MycheckboxStateless(
    {Key? key,
    this.initVal = true,
    this.onChange,
    this.isDisabled = false,
    this.size = 20,
    this.height,
    this.iconH = 'ic_check_box_h.png',
    this.iconN = 'ic_check_box_n.png',
    this.innerPadding = 0})
    : super(key: key);