fromJson static method
Inherited by: UserTypeBot UserTypeDeleted UserTypeRegular UserTypeUnknown
Implementation
static UserTypeDeleted? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const UserTypeDeleted();
}