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