FObscureTextManagedControl constructor
const
FObscureTextManagedControl({
- ValueNotifier<
bool> ? controller, - bool? initial,
- ValueChanged<
bool> ? onChange,
Creates a FObscureTextControl.
Implementation
const FObscureTextManagedControl({this.controller, this.initial, this.onChange})
: assert(
controller == null || initial == null,
'Cannot provide both controller and initially obscured. Pass initial value to the controller instead.',
),
super._();