GetDataEndpointOutput.fromJson constructor

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

Implementation

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