RegistryTagVersion.fromJson constructor

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

Implementation

factory RegistryTagVersion.fromJson(Map<String, dynamic> json) =>
    RegistryTagVersion(tag: json['tag'] as String, digest: json['digest'] as String?);