slug property

String slug
override

Implementation

String get slug => _getAttribute<String>(kSlug, '');
void slug=(String? x)

pass null to remove key from attributes

Implementation

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