background property

Color? get background

Implementation

Color? get background {
  return backgroundState?.fromController(this) ?? _background;
}
set background (Color? value)

Implementation

set background(Color? value) => _background = value;