counterForeground method

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

Equivalent to

TextStyle(foreground: input)

Implementation

NikuTextField counterForeground(Paint foreground) {
  this._counter_foreground = foreground;

  return this;
}