UserGroupDto constructor

UserGroupDto({
  1. String? groupId,
  2. String? userId,
  3. String? groupName,
})

Returns a new UserGroupDto instance.

Implementation

UserGroupDto({
  this.groupId,
  this.userId,
  this.groupName,
});