CreateRealtimeEndpointOutput.fromJson constructor
Implementation
factory CreateRealtimeEndpointOutput.fromJson(Map<String, dynamic> json) {
return CreateRealtimeEndpointOutput(
mLModelId: json['MLModelId'] as String?,
realtimeEndpointInfo: json['RealtimeEndpointInfo'] != null
? RealtimeEndpointInfo.fromJson(
json['RealtimeEndpointInfo'] as Map<String, dynamic>)
: null,
);
}