name property

String? name
final

Name is used to bind a method parameter to a URL path parameter.

@Get(path: '/{param}')
Future<Response> fetch(@Path('param') String hello);

Implementation

final String? name;