ChatGroupModel constructor

ChatGroupModel({
  1. String? ChatGroupId,
  2. String? Name,
  3. String? Message,
  4. String? SendAt,
  5. String? SendAtTime,
  6. String? CreatedAt,
  7. String? GroupType,
  8. List<ChatGroupMemberRF>? chatGroupMember,
})

Implementation

ChatGroupModel(
    {this.ChatGroupId,
    this.Name,
    this.Message,
    this.SendAt,
    this.SendAtTime,
    this.CreatedAt,
    this.GroupType,
    this.chatGroupMember});