foreground method

Text foreground(
  1. Color color
)

Implementation

Text foreground(Color color) {
  return copyWith(
    style: style.copyWith(foreground: Paint()..color = color),
  );
}