srcUrl property

String? get srcUrl

Will be present for elements with a 'src' URL.

Implementation

String? get srcUrl => _wrapped.srcUrl;
set srcUrl (String? v)

Implementation

set srcUrl(String? v) {
  _wrapped.srcUrl = v;
}