DefaultValues.fromJson constructor

DefaultValues.fromJson(
  1. Map json_
)

Implementation

DefaultValues.fromJson(core.Map json_)
    : this(
        machineType: json_.containsKey('machineType')
            ? json_['machineType'] as core.String
            : null,
      );