RunQueryRequest.fromJson constructor

RunQueryRequest.fromJson(
  1. Map json_
)

Implementation

RunQueryRequest.fromJson(core.Map json_)
  : this(
      dataRange:
          json_.containsKey('dataRange')
              ? DataRange.fromJson(
                json_['dataRange'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );