CometChatGroupScope constructor

const CometChatGroupScope({
  1. Key? key,
  2. Future<void> onCLick(
    1. Group group,
    2. GroupMember member,
    3. String newScope,
    4. String oldScope,
    )?,
  3. required GroupMember member,
  4. required Group group,
  5. String? loggedInUserId,
  6. GroupScopeStyle groupScopeStyle = const GroupScopeStyle(),
})

Implementation

const CometChatGroupScope(
    {super.key,
    this.onCLick,
    required this.member,
    required this.group,
    this.loggedInUserId,
    this.groupScopeStyle = const GroupScopeStyle()});