ContainerImage.fromJson constructor

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

Implementation

factory ContainerImage.fromJson(Map<String, dynamic> json) {
  return ContainerImage(
    createdAt: timeStampFromJson(json['createdAt']),
    digest: json['digest'] as String?,
    image: json['image'] as String?,
  );
}