present method

Future<void> present()

Transition the offer into the presented state.

Implementation

Future<void> present() async {
  _ensureNotDisposed();
  await _methodChannel.invokeMethod<void>('present');
}