GetThemeParametersJsonString.fromMap constructor

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

Implementation

GetThemeParametersJsonString.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  if (map['theme'] != null) {
    theme = TdApiMap.fromMap(map['theme']) as ThemeParameters;
  }
}