apiKey property

String get apiKey

Implementation

static String get apiKey {
  if (_apiKey == null) {
    throw Exception(
      'FeatureBuddy has not been configured. Call FeatureBuddyConfig.configure() before using FeatureBuddy.',
    );
  }
  return _apiKey!;
}