ResourceManifest.fromJson constructor

ResourceManifest.fromJson(
  1. Map json_
)

Implementation

ResourceManifest.fromJson(core.Map json_)
    : this(
        clusterScoped: json_.containsKey('clusterScoped')
            ? json_['clusterScoped'] as core.bool
            : null,
        manifest: json_.containsKey('manifest')
            ? json_['manifest'] as core.String
            : null,
      );