website property

String website

Implementation

String get website => _getAttribute<String>(kWebsite, '');
void website=(String? x)

pass null to remove key from attributes

Implementation

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