Customer constructor
Customer({
- String? id,
- required String email,
- required String name,
- required List<
Instrument> instruments, - Instrument? defaultInstrument,
Implementation
Customer(
{this.id,
required this.email,
required this.name,
required this.instruments,
this.defaultInstrument});