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