OSPolicyResourceConfigStep.fromJson constructor
OSPolicyResourceConfigStep.fromJson(
- Map _json
Implementation
OSPolicyResourceConfigStep.fromJson(core.Map _json)
: this(
errorMessage: _json.containsKey('errorMessage')
? _json['errorMessage'] as core.String
: null,
outcome: _json.containsKey('outcome')
? _json['outcome'] as core.String
: null,
type: _json.containsKey('type') ? _json['type'] as core.String : null,
);