CreateImageBuilderStreamingURLResult.fromJson constructor
Implementation
factory CreateImageBuilderStreamingURLResult.fromJson(
Map<String, dynamic> json) {
return CreateImageBuilderStreamingURLResult(
expires: timeStampFromJson(json['Expires']),
streamingURL: json['StreamingURL'] as String?,
);
}