GCheckBox constructor

const GCheckBox({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. required bool value,
  5. required void onChanged(
    1. bool?
    ),
})

Implementation

const GCheckBox({
  Key? key,
  required this.title,
  this.subtitle,
  required this.value,
  required this.onChanged,
}) : super(key: key);