keyboardAppearance method

NikuTextField keyboardAppearance(
  1. Brightness brightness
)

The appearance of the keyboard, only honored on iOS devices

Equivalent to

TextFormField(
  keyboardAppearance: input
)

Implementation

NikuTextField keyboardAppearance(Brightness brightness) {
  this._keyboardAppearance = brightness;

  return this;
}