presentMode method

Future<int> presentMode()

Get the current presentation mode (0=Auto, 1=Fifo, 2=Mailbox, 3=Immediate).

Implementation

Future<int> presentMode() async {
  final config = await _getConfig();
  return config.rendering.presentMode.value;
}