readQuery$getLastWidgetOutboundsByTarget method
Query$getLastWidgetOutboundsByTarget?
readQuery$getLastWidgetOutboundsByTarget({
- required Variables$Query$getLastWidgetOutboundsByTarget variables,
- bool optimistic = true,
Implementation
Query$getLastWidgetOutboundsByTarget?
readQuery$getLastWidgetOutboundsByTarget({
required Variables$Query$getLastWidgetOutboundsByTarget variables,
bool optimistic = true,
}) {
final result = this.readQuery(
graphql.Request(
operation: graphql.Operation(
document: documentNodeQuerygetLastWidgetOutboundsByTarget),
variables: variables.toJson(),
),
optimistic: optimistic,
);
return result == null
? null
: Query$getLastWidgetOutboundsByTarget.fromJson(result);
}