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_.containsKey('framesReported')
            ? json_['framesReported'] as core.int
            : null,
        totalRowsCount: json_.containsKey('totalRowsCount')
            ? json_['totalRowsCount'] as core.int
            : null,
      );