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