GetalVeld constructor

const GetalVeld({
  1. Key? key,
  2. required String label,
  3. required String eenheid,
  4. required double waarde,
  5. required ValueChanged<double> onChanged,
  6. double? min,
  7. double? max,
  8. int decimalen = 1,
})

Implementation

const GetalVeld({
  super.key,
  required this.label,
  required this.eenheid,
  required this.waarde,
  required this.onChanged,
  this.min,
  this.max,
  this.decimalen = 1,
});