isScreenRound function

Future<bool> isScreenRound()

Implementation

Future<bool> isScreenRound() async {
  final result = await _channel.invokeMethod<bool>('isScreenRound');
  return result ?? false;
}