InboundConnectionStatus.fromJson constructor
Implementation
factory InboundConnectionStatus.fromJson(Map<String, dynamic> json) {
return InboundConnectionStatus(
message: json['Message'] as String?,
statusCode:
(json['StatusCode'] as String?)?.toInboundConnectionStatusCode(),
);
}