Customer constructor

Customer({
  1. String? id,
  2. required String email,
  3. required String name,
  4. required List<Instrument> instruments,
  5. Instrument? defaultInstrument,
})

Implementation

Customer(
    {this.id,
    required this.email,
    required this.name,
    required this.instruments,
    this.defaultInstrument});