Group constructor

Group({
  1. int? groupID,
  2. String? groupName,
  3. String? groupshortName,
  4. String? description,
  5. Media? groupBanner,
  6. String? groupType,
  7. String? groupURL,
  8. RxList<User>? groupUsers,
  9. int? groupUsersCount,
  10. Rx<bool>? joinStatus,
  11. GroupSocial? groupSocial,
  12. GroupRoles? myRole,
})

Implementation

Group({
  this.groupID,
  this.groupName,
  this.groupshortName,
  this.description,
  this.groupLogo,
  this.groupBanner,
  this.groupType,
  this.groupURL,
  this.groupUsers,
  this.groupUsersCount,
  this.joinStatus,
  this.groupSocial,
  this.myRole,
});