ExecutionStageState.fromJson constructor

ExecutionStageState.fromJson(
  1. Map _json
)

Implementation

ExecutionStageState.fromJson(core.Map _json)
    : this(
        currentStateTime: _json.containsKey('currentStateTime')
            ? _json['currentStateTime'] as core.String
            : null,
        executionStageName: _json.containsKey('executionStageName')
            ? _json['executionStageName'] as core.String
            : null,
        executionStageState: _json.containsKey('executionStageState')
            ? _json['executionStageState'] as core.String
            : null,
      );