ComputeEngineMigrationTarget.fromJson constructor

ComputeEngineMigrationTarget.fromJson(
  1. Map json_
)

Implementation

ComputeEngineMigrationTarget.fromJson(core.Map json_)
  : this(
      shape: json_.containsKey('shape')
          ? ComputeEngineShapeDescriptor.fromJson(
              json_['shape'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );