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