Escalation.fromJson constructor

Escalation.fromJson(
  1. 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,
      );