backgroundColor property

CSSEntry<CSSColor>? backgroundColor

Implementation

CSSEntry<CSSColor>? get backgroundColor =>
    _getEntry<CSSColor>('background-color');
void backgroundColor=(Object? value)

Implementation

set backgroundColor(Object? value) => _addEntry(
    'background-color', CSSEntry.from<CSSColor>('background-color', value));