buildPDF method
Implementation
@override
Future<String> buildPDF(List<String> imagePaths) async {
try {
final String result = await methodChannel.invokeMethod(
'buildPDF',
{'imagePaths': imagePaths},
);
return result;
} catch (e) {
return "FAILED:::Exception occurred - $e";
}
}