ChatMemberOwner constructor

const ChatMemberOwner({
  1. required User user,
  2. required bool isAnonymous,
  3. String? customTitle,
})

Creates a new ChatMemberOwner object.

Implementation

const ChatMemberOwner({
  required this.user,
  required this.isAnonymous,
  this.customTitle,
});