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,
      );