InboundConnectionStatus.fromJson constructor

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

Implementation

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