convertHtmlToPdf method
Converts HTML to PDF by calling the native implementation.
Accepts args containing the HTML string and other configurations.
Implementation
@override
Future<String?> convertHtmlToPdf(Map<String, dynamic> args) async {
final path = await methodChannel.invokeMethod<String>('convertHtmlToPdf', args);
return path;
}