Oci.fromJson constructor

Oci.fromJson(
  1. Map json_
)

Implementation

Oci.fromJson(core.Map json_)
  : this(
      file: json_['file'] as core.String?,
      registryPath: json_['registryPath'] as core.String?,
      tags: (json_['tags'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );