DataflowEndpointGroupIdResponse.fromJson constructor

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

Implementation

factory DataflowEndpointGroupIdResponse.fromJson(Map<String, dynamic> json) {
  return DataflowEndpointGroupIdResponse(
    dataflowEndpointGroupId: json['dataflowEndpointGroupId'] as String?,
  );
}