buildPDF method

  1. @override
Future<String> buildPDF(
  1. List<String> imagePaths
)
override

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";
  }
}