textForeground method

NikuButton textForeground(
  1. Paint foreground
)
  • forground - The paint drawn as a foreground for the text.

Equivalent to

TextStyle(foreground: input)

Implementation

NikuButton textForeground(Paint foreground) {
  _text_foreground = foreground;

  return this;
}