Customer constructor

Customer({
  1. String? id,
  2. String? createdAt,
  3. bool? customerPriceGroup,
})

Implementation

Customer({this.id, this.createdAt, this.customerPriceGroup});