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