UserGroupDTO constructor
UserGroupDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- String? name,
- int? baseDiscountPercentage,
- ProductPriceGroupDTO? priceGroup,
- List<
ProfileDTO> ? users,
Implementation
UserGroupDTO(
{super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
this.name,
this.baseDiscountPercentage,
this.priceGroup,
this.users});