PdfDate constructor

const PdfDate({
  1. required String raw,
  2. required DateTime? value,
})

Creates a PdfDate with the given raw string and parsed DateTime.

Implementation

const PdfDate({required this.raw, required this.value});