writeQuery$searchCoaches method
void
writeQuery$searchCoaches({
- required Query$searchCoaches data,
- Variables$Query$searchCoaches? variables,
- bool broadcast = true,
Implementation
void writeQuery$searchCoaches({
required Query$searchCoaches data,
Variables$Query$searchCoaches? variables,
bool broadcast = true,
}) =>
this.writeQuery(
graphql.Request(
operation:
graphql.Operation(document: documentNodeQuerysearchCoaches),
variables: variables?.toJson() ?? const {},
),
data: data.toJson(),
broadcast: broadcast,
);