closePdf method
Close a PDF by the given pdf
identifier.
The identifier comes from the openPdf method.
Implementation
@override
Future<int?> closePdf({
required int pdf,
}) async {
final id = await methodChannel.invokeMethod<int>('closePDF', {
'pdf': pdf,
});
return id;
}