baseUrl property

  1. @override
String get baseUrl
override

The base URL for API requests.

This must be implemented by subclasses to specify the API endpoint. Example: "https://api.example.com/v1"

Implementation

@override
String get baseUrl => Uri.parse(persistentStorage.baseApiUrl)
    .replace(
      path: "/rpc/utils-notification/notification",
    )
    .toString();