UserGroupBody constructor

UserGroupBody({
  1. String? storeId,
  2. String? name,
  3. double? baseDiscountPercentage,
  4. String? priceGroupId,
  5. List<String>? users,
})

Implementation

UserGroupBody({
  this.storeId,
  this.name,
  this.baseDiscountPercentage,
  this.priceGroupId,
  this.users,
});