AcceptInboundConnectionResponse.fromJson constructor
Implementation
factory AcceptInboundConnectionResponse.fromJson(Map<String, dynamic> json) {
return AcceptInboundConnectionResponse(
connection: json['Connection'] != null
? InboundConnection.fromJson(
json['Connection'] as Map<String, dynamic>)
: null,
);
}