darkKeyboard method
The appearance of the keyboard, only honored on iOS devices
Using Brightness.dark
Equivalent to
TextFormField(
keyboardAppearance: Brightness.dark
)
Implementation
NikuTextField darkKeyboard() {
this._keyboardAppearance = Brightness.dark;
return this;
}