DeleteEndpointResponse.fromJson constructor

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

Implementation

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