GetChatNotificationSettingsExceptions.fromMap constructor

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

Implementation

GetChatNotificationSettingsExceptions.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  if (map['scope'] != null) {
    scope = TdApiMap.fromMap(map['scope']) as NotificationSettingsScope;
  }
  compare_sound = map['compare_sound'];
}