RoundedTextField constructor

const RoundedTextField({
  1. Key? key,
  2. String? hintText,
  3. IconData? icon,
  4. bool? isObscure,
  5. double? width,
  6. dynamic onChanged(
    1. String
    )?,
})

Implementation

const RoundedTextField({
  Key? key,
  this.hintText,
  this.icon,
  this.isObscure,
  this.width,
  this.onChanged,
}) : super(key: key);