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