Grinder constructor

const Grinder({
  1. required String make,
  2. required String model,
  3. bool? stepped,
  4. GrinderType? type,
  5. GrinderRange? range,
})

The tool used for grinding coffee beans.

Implementation

const Grinder({
  required this.make,
  required this.model,
  this.stepped,
  this.type,
  this.range,
});