dateFormat property

int dateFormat

Implementation

int get dateFormat => _getAttribute<int>(kDateFormat, 0);
void dateFormat=(int? x)

pass null to remove key from attributes

Implementation

set dateFormat(int? x) => (x == null)
    ? _attributes.remove(kDateFormat)
    : _attributes[kDateFormat] = x;