ProjectRepositoryTag.fromJson constructor
Implementation
factory ProjectRepositoryTag.fromJson(Map<String, dynamic> json) => ProjectRepositoryTag(
tag: json['tag'] as String,
digest: json['digest'] as String?,
mediaType: json['media_type'] as String?,
manifestSize: json['manifest_size'] as int?,
);