initializeSdk method

Future<void> initializeSdk(
  1. String baseUrl,
  2. String accessToken
)

Initializes the SDK with the provided credentials.

baseUrl The base URL for the Lune SDK API endpoints. accessToken The access token required for SDK authentication.

Throws an exception if initialization fails.

Implementation

Future<void> initializeSdk(String baseUrl, String accessToken) {
  throw UnimplementedError('initializeSdk() has not been implemented.');
}