ScheduledExecutionRecord.fromJson constructor

ScheduledExecutionRecord.fromJson(
  1. Map json_
)

Implementation

ScheduledExecutionRecord.fromJson(core.Map json_)
  : this(
      errorStatus: json_.containsKey('errorStatus')
          ? Status.fromJson(
              json_['errorStatus'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      executionTime: json_['executionTime'] as core.String?,
      workflowInvocation: json_['workflowInvocation'] as core.String?,
    );