AlertTile constructor

const AlertTile({
  1. Key? key,
  2. required bool? value,
  3. dynamic onCheck(
    1. bool?
    )?,
  4. required int? intervalTime,
  5. dynamic onChanged(
    1. int
    )?,
  6. bool? enabled,
  7. String? label,
  8. String? toolTipMessage,
})

Implementation

const AlertTile({super.key, required this.value, this.onCheck, required this.intervalTime, this.onChanged, this.enabled, this.label, this.toolTipMessage});