isItRealDevice method

Future<bool?> isItRealDevice()

Method to check if the device is real. Throws UnimplementedError if not overridden by a platform-specific implementation.

Implementation

Future<bool?> isItRealDevice() {
  throw UnimplementedError('Failed to check if device is real.');
}