openAddPagesView static method
Displays the Add Pages view.
await PdftronFlutter.openAddPagesView({'x1': 10.0, 'y1': 10.0, 'x2': 20.0, 'y2': 20.0});
Requires a source rect in screen coordinates. On iOS, this rect will be the anchor point for the view. The rect is ignored on Android.
Implementation
static Future<void> openAddPagesView(Map<String, double>? sourceRect) {
return _channel.invokeMethod(Functions.openAddPagesView,
<String, dynamic>{Parameters.sourceRect: sourceRect});
}