StockholmPICheckboxProp constructor

const StockholmPICheckboxProp({
  1. required String name,
  2. required bool value,
  3. required ValueChanged<bool>? onChanged,
  4. bool enabled = true,
  5. Key? key,
})

Implementation

const StockholmPICheckboxProp({
  required this.name,
  required this.value,
  required this.onChanged,
  this.enabled = true,
  Key? key,
}) : super(key: key);