foregroundColor method

StyleContext foregroundColor(
  1. Color color
)

Implementation

StyleContext foregroundColor(Color color) {
  _assertUseOnce(_foregroundColor == null, "foregroundColor()");
  _foregroundColor = color;
  return this;
}