TransferChatOwnership.fromMap constructor

TransferChatOwnership.fromMap(
  1. Map<String, dynamic> map
)

Implementation

TransferChatOwnership.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  chat_id = map['chat_id'];
  user_id = map['user_id'];
  password = map['password'];
}