isScreenRound method

Future<bool?> isScreenRound()

true if the device is round, false if its rectangular/square, null for any errors

Implementation

Future<bool?> isScreenRound() async {
  return await methodChannel.invokeMethod<bool?>('isScreenRound');
}