variables property

Map<String, dynamic> get variables

Generates a map of variables for the GraphQL query.

This map is used when sending the query to the GraphQL server.

Implementation

Map<String, dynamic> get variables => Map.fromEntries(
      parameters.map((p) => p.toMapEntry()),
    );