contentToPDF static method

Future<String?> contentToPDF({
  1. required String content,
  2. double duration = 2000,
  3. required String savedPath,
  4. PdfMargins? margins,
  5. PaperFormat format = PaperFormat.a4,
  6. String? executablePath,
  7. bool autoClosePage = true,
})

Implementation

static Future<String?> contentToPDF({
  required String content,
  double duration: 2000,
  required String savedPath,
  PdfMargins? margins,
  PaperFormat format: PaperFormat.a4,
  String? executablePath,
  bool autoClosePage = true,
}) async {
  UnimplementedError('contentToPDF');
  return null;
}