url property

String url

Implementation

String get url => _getAttribute<String>(kUrl, '');
void url=(String? x)

pass null to remove key from attributes

Implementation

set url(String? x) =>
    (x == null) ? _attributes.remove(kUrl) : _attributes[kUrl] = x;