isTestflight property

Future<bool> isTestflight

Query whether the app is running from a Testflight build

Implementation

static Future<bool> get isTestflight async {
  if (_isTestflightCache == null) {
    _isTestflightCache = await _checkTestflight();
  }

  return _isTestflightCache;
}