color property

Color? color

Returns the Color passed to the App's View.

Implementation

static Color? get color => _appState?.color;
void color=(Color? v)

Implementation

static set color(Color? v) {
  if (v != null) {
    _appState?.color = v;
  }
}