MPasswordWidget constructor

const MPasswordWidget({
  1. Key? key,
  2. required Widget child(
    1. Widget icon,
    2. bool hide
    ),
  3. Color? activeColor,
  4. Color? unActiveColor,
  5. double activeSize = 30.0,
  6. double unActiveSize = 30.0,
})

Implementation

const MPasswordWidget({
  super.key,
  required this.child,
  this.activeColor,
  this.unActiveColor,
  this.activeSize = 30.0,
  this.unActiveSize = 30.0,
});