backgroundColor property

String get backgroundColor

Get Background Color

Implementation

String get backgroundColor {
  return _backgroundColorHex;
}
set backgroundColor (String backgroundColorHex)

Set Background Color

Implementation

set backgroundColor(String backgroundColorHex) {
  _backgroundColorHex = _isColorAppropriate(backgroundColorHex);
}