name property

String? name
final

Name is used to bind a method parameter to the query parameter.

@Get(path: '/something')
Future<Response> fetch({@Query('id') String mySuperId});

Implementation

final String? name;