fromJson static method
Inherited by: SecretChatStateClosed SecretChatStatePending SecretChatStateReady
Implementation
static SecretChatStateReady? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const SecretChatStateReady();
}