getKickOption static method

CometChatGroupMemberOption getKickOption({
  1. CometChatTheme? theme,
})

Implementation

static CometChatGroupMemberOption getKickOption({CometChatTheme? theme}) {
  return CometChatGroupMemberOption(
    id: GroupMemberOptionConstants.kick,
    icon: AssetConstants.delete,
    packageName: UIConstants.packageName,
    backgroundColor: theme?.palette.getError() ?? Colors.red,
  );
}