updateColor method
Updates the group's color.
The color affects both the header bar (solid) and background (translucent).
Implementation
void updateColor(Color newColor) {
runInAction(() {
_observableColor.value = newColor;
});
}
Updates the group's color.
The color affects both the header bar (solid) and background (translucent).
void updateColor(Color newColor) {
runInAction(() {
_observableColor.value = newColor;
});
}