url property

  1. @Input.new()
set url (String? value)

Implementation

@Input()
set url(String? value) {
  final normalized = value?.trim();
  _url = normalized == null || normalized.isEmpty ? null : normalized;
  if (_url != null) {
    _pdfSource = _url;
    _scheduleLoadPdf();
  }
}