suffixForeground method

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

Equivalent to

TextStyle(foreground: input)

Implementation

NikuTextField suffixForeground(Paint foreground) {
  this._suffix_foreground = foreground;

  return this;
}