insertBlankPage method

Future<bool> insertBlankPage(
  1. int at
)

Implementation

Future<bool> insertBlankPage(int at) async {
  attach();
  final UPdfEdit? edit = _edit;
  if (edit == null) return false;
  final bool done = await edit.insertBlankPage(at);
  if (done) viewer.invalidateAll();
  notifyListeners();
  return done;
}