fromJson static method
Inherited by: NotificationGroupTypeCalls NotificationGroupTypeMentions NotificationGroupTypeMessages NotificationGroupTypeSecretChat
Implementation
static NotificationGroupTypeMessages? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const NotificationGroupTypeMessages();
}