backgroundColor property

Color get backgroundColor

选择器背景色 默认白色

Implementation

Color get backgroundColor => this._backgroundColor ?? Colors.white;
set backgroundColor (Color value)

Implementation

set backgroundColor(Color value) {
  _backgroundColor = value;
}