openNotification method

Future<void> openNotification()

Open notification Only for Android.

For example:

await driver.device.openNotification()

Implementation

Future<void> openNotification() => _client.send(
    _handler.device.buildOpenNotificationRequest(),
    _handler.device.parseOpenNotificationResponse);