exportWidgets method
exports the form data from the current PDF document to an XFDF file.
example:
const exportPath = await controller.document.exportWidgets();
Implementation
Future<String> exportWidgets() async {
return await _channel.invokeMethod('export_widgets');
}