url property

String? url
final

The URL of the endpoint to invoke. This is appended to baseEndpoint. Example:

if (query.providerArgs['limit'] == 1) {
  return "/person/${query.providerArgs['id']}";
}

return "/people";

Implementation

final String? url;