writeQuery$PowerUsageHistory method
void
writeQuery$PowerUsageHistory({
- required Query$PowerUsageHistory data,
- required Variables$Query$PowerUsageHistory variables,
- 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,
);