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