bytes property
Implementation
@Input()
set bytes(Uint8List? value) {
_bytes = value == null || value.isEmpty ? null : Uint8List.fromList(value);
if (_bytes != null) {
_pdfSource = _bytes;
_scheduleLoadPdf();
}
}
@Input()
set bytes(Uint8List? value) {
_bytes = value == null || value.isEmpty ? null : Uint8List.fromList(value);
if (_bytes != null) {
_pdfSource = _bytes;
_scheduleLoadPdf();
}
}