Escalation.fromJson constructor
Escalation.fromJson(
- Map json_
Implementation
Escalation.fromJson(core.Map json_)
: this(
justification: json_.containsKey('justification')
? json_['justification'] as core.String
: null,
reason: json_.containsKey('reason')
? json_['reason'] as core.String
: null,
);