presentLimited method

Future<void> presentLimited(
  1. RequestType type
)

Implementation

Future<void> presentLimited(RequestType type) async {
  assert(Platform.isIOS || Platform.isAndroid);
  if (Platform.isIOS || Platform.isAndroid) {
    return _channel.invokeMethod(PMConstants.mPresentLimited, {
      'type': type.value,
    });
  }
}