save method

Future<Uint8List> save()

Returns the current PDF bytes (including all signatures).

Implementation

Future<Uint8List> save() async {
  _ensureNotDisposed();
  return Uint8List.fromList(_bytes);
}