GroupOutDataLightExport constructor

const GroupOutDataLightExport({
  1. required String groupId,
  2. String? parentGroupId,
  3. required int rank,
  4. required String createdTime,
  5. required String joinedTime,
  6. String? accessByGroupAsMember,
  7. String? accessByParentGroup,
  8. required bool isConnectedGroup,
})

Implementation

const GroupOutDataLightExport({
  required this.groupId,
  this.parentGroupId,
  required this.rank,
  required this.createdTime,
  required this.joinedTime,
  this.accessByGroupAsMember,
  this.accessByParentGroup,
  required this.isConnectedGroup,
});