fromJson static method
Inherited by: ReportChatResultMessagesRequired ReportChatResultOk ReportChatResultOptionRequired ReportChatResultTextRequired
Implementation
static ReportChatResultOk? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const ReportChatResultOk();
}