baseUrlKey property

String baseUrlKey

Retrieves the publishable API key.

Implementation

static String get baseUrlKey {
  assert(instance.baseUrl != null,
  'A publishableKey is required and missing');
  return instance.baseUrl!;
}
void baseUrlKey=(String value)

Implementation

static set baseUrlKey(String value) {
  if (value == instance.baseUrl) {
    return;
  }
  instance.baseUrl = value;
}