WebRTCAudioSegment.fromJson constructor

WebRTCAudioSegment.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory WebRTCAudioSegment.fromJson(Map<String, dynamic> json) => WebRTCAudioSegment(
    isStart: (json['IsStart'] as bool?) ?? false,
    correlationId: (json['CorrelationId'] as String?),
);