fromJson static method
Implementation
static GroupCallRecentSpeaker? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return GroupCallRecentSpeaker(
participantId: MessageSender.fromJson(
tdMapFromJson(json['participant_id']),
),
isSpeaking: (json['is_speaking'] as bool?) ?? false,
);
}