isFullScreen property

Future<bool?> isFullScreen

to get the current status of the SystemUI

Implementation

static Future<bool?> get isFullScreen async {
  bool? status;
  try {
    status = await _channel.invokeMethod("status");
  } catch (e) {
    print(e);
  }
  return status;
}