filename property

String filename

Implementation

String get filename => _getAttribute<String>(kFilename, '');
void filename=(String? x)

pass null to remove key from attributes

Implementation

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