isTwentyFourHourTime property

bool isTwentyFourHourTime

Implementation

bool get isTwentyFourHourTime =>
    _getAttribute<bool>(kTwentyFourHourTime, false);
void isTwentyFourHourTime=(bool? x)

pass null to remove key from attributes

Implementation

set isTwentyFourHourTime(bool? x) => (x == null)
    ? _attributes.remove(kTwentyFourHourTime)
    : _attributes[kTwentyFourHourTime] = x;