backgroundColor property

Color get backgroundColor

Implementation

Color get backgroundColor => _backgroundColor;
set backgroundColor (Color v)

Implementation

set backgroundColor(Color v) {
  if (_backgroundColor == v) return;
  _backgroundColor = v;
  _invalidateCache();
  markNeedsPaint();
}