remoteLink property

String remoteLink

Implementation

String get remoteLink => _getAttribute<String>(kRemoteLink, '');
void remoteLink=(String? x)

pass null to remove key from attributes

Implementation

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