color property
Color?
get
color
Returns the Color passed to the App's View.
Implementation
Color? get color => appState?.color;
set
color
(Color? v)
Implementation
set color(Color? v) {
if (v != null) {
appState?.color = v;
}
}