DirectTCPSocketChunkSentEvent.fromJson constructor
Implementation
factory DirectTCPSocketChunkSentEvent.fromJson(Map<String, dynamic> json) {
return DirectTCPSocketChunkSentEvent(
identifier: RequestId.fromJson(json['identifier'] as String),
data: json['data'] as String,
timestamp: MonotonicTime.fromJson(json['timestamp'] as num),
);
}