DeployedImage.fromJson constructor

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

Implementation

factory DeployedImage.fromJson(Map<String, dynamic> json) {
  return DeployedImage(
    resolutionTime: timeStampFromJson(json['ResolutionTime']),
    resolvedImage: json['ResolvedImage'] as String?,
    specifiedImage: json['SpecifiedImage'] as String?,
  );
}