ExecutionReport.fromJson constructor

ExecutionReport.fromJson(
  1. Map json_
)

Implementation

ExecutionReport.fromJson(core.Map json_)
    : this(
        executionErrors: json_.containsKey('executionErrors')
            ? ValidationReport.fromJson(json_['executionErrors']
                as core.Map<core.String, core.dynamic>)
            : null,
        framesReported: json_['framesReported'] as core.int?,
        totalRowsCount: json_['totalRowsCount'] as core.int?,
      );