UpdatedRegistryTag.fromJson constructor

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

Implementation

factory UpdatedRegistryTag.fromJson(Map<String, dynamic> json) => UpdatedRegistryTag(
  repository: json['repository'] as String,
  tag: json['tag'] as String,
  digest: json['digest'] as String,
  deletedSource: json['deleted_source'] as bool? ?? false,
);