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