Escalation.fromJson constructor

Escalation.fromJson(
  1. Map json_
)

Implementation

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