updateBaseUrl method

  1. @experimental
Future<void> updateBaseUrl(
  1. Uri baseUrl
)

Temporarily overrides the baseUrl value from AppConfiguration with a new baseUrl value used for communicating with the server.

The App will revert to using the value in AppConfiguration when it is restarted.

Implementation

@experimental
Future<void> updateBaseUrl(Uri baseUrl) async {
  return await realmCore.updateBaseUrl(this, baseUrl);
}