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