DirectTCPSocketChunkSentEvent.fromJson constructor

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

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),
  );
}