ModifyEndpointResponse.fromJson constructor

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

Implementation

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