save method
Save document
example:
bool result = await _controller.save();
Return value: true if the save is successful, false if the save fails.
Implementation
@Deprecated("use CPDFDocument().save()")
Future<bool> save() async {
  return await document.save();
}