apiKey property

String apiKey

Implementation

static String get apiKey => _apiKey!;
void apiKey=(String value)

Implementation

static set apiKey(String value) {
  if (_apiKey == value) return;
  _apiKey = value;
  _setupFuture = rc.Purchases.setup(apiKey);
}