fromJson static method
Implementation
static TMeUrlTypeSupergroup? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TMeUrlTypeSupergroup(
supergroupId: (json['supergroup_id'] as int?) ?? 0,
);
}
static TMeUrlTypeSupergroup? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TMeUrlTypeSupergroup(
supergroupId: (json['supergroup_id'] as int?) ?? 0,
);
}