ContainerImage.fromJson constructor
Implementation
factory ContainerImage.fromJson(Map<String, dynamic> json) => ContainerImage(
id: json['id'] as String,
tags: (json['tags'] as List?)?.cast<String>() ?? const [],
size: json['size'] as int?,
labels: _labelsFromJson(json['labels']),
);