isRunningInTestFlight method

Future<bool?> isRunningInTestFlight()

Method to check if the app in the testflight. Throws UnimplementedError if not overridden by a platform-specific implementation.

Implementation

Future<bool?> isRunningInTestFlight() {
  throw UnimplementedError('Failed to check if app on testflight.');
}