ChatMemberStatusCreator constructor

const ChatMemberStatusCreator({
  1. required String customTitle,
  2. required bool isAnonymous,
  3. required bool isMember,
})

The user is the owner of the chat and has all the administrator privileges

Implementation

const ChatMemberStatusCreator({
  required this.customTitle,
  required this.isAnonymous,
  required this.isMember,
});