RecordingStateChangedEvent.fromJson constructor
Implementation
factory RecordingStateChangedEvent.fromJson(Map<String, dynamic> json) {
return RecordingStateChangedEvent(
isRecording: json['isRecording'] as bool? ?? false,
service: ServiceName.fromJson(json['service'] as String),
);
}