bytes property

  1. @Input.new()
set bytes (Uint8List? value)

Implementation

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