fromJson static method
Inherited by: UserStatusEmpty UserStatusLastMonth UserStatusLastWeek UserStatusOffline UserStatusOnline UserStatusRecently
Implementation
static UserStatusEmpty? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const UserStatusEmpty();
}