writeQuery$PowerUsageHistory method

void writeQuery$PowerUsageHistory({
  1. required Query$PowerUsageHistory data,
  2. required Variables$Query$PowerUsageHistory variables,
  3. bool broadcast = true,
})

Implementation

void writeQuery$PowerUsageHistory({
  required Query$PowerUsageHistory data,
  required Variables$Query$PowerUsageHistory variables,
  bool broadcast = true,
}) => this.writeQuery(
  graphql.Request(
    operation: graphql.Operation(
      document: documentNodeQueryPowerUsageHistory,
    ),
    variables: variables.toJson(),
  ),
  data: data.toJson(),
  broadcast: broadcast,
);