UpdateConnectionResponse.fromJson constructor

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

Implementation

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