VisibilityToggle constructor

const VisibilityToggle({
  1. Key? key,
  2. ValueChanged<bool>? onVisibilityChanged,
  3. bool obscureText = true,
})

Implementation

const VisibilityToggle({
  super.key,
  this.onVisibilityChanged,
  this.obscureText = true,
});