PdfPlatformFont constructor

const PdfPlatformFont({
  1. required String label,
  2. required Future<Uint8List?> loadBytes(),
  3. String? family,
})

Implementation

const PdfPlatformFont({
  required this.label,
  required this.loadBytes,
  this.family,
});