StockholmCheckbox constructor

StockholmCheckbox({
  1. required bool value,
  2. ValueChanged<bool>? onChanged,
  3. String? label,
  4. dynamic size = 16.0,
  5. double cornerRadius = 4.0,
})

Implementation

StockholmCheckbox({
  required this.value,
  this.onChanged,
  this.label,
  this.size = 16.0,
  this.cornerRadius = 4.0,
});