GOfficeNumberTextField constructor

GOfficeNumberTextField({
  1. required TextEditingController controller,
  2. String? hintText,
  3. EdgeInsetsGeometry? padding,
  4. required int maxLength,
  5. bool? autoFocus,
  6. TextAlign? textAlign,
  7. bool? obscureText,
})

Implementation

GOfficeNumberTextField({
  required this.controller,
  this.hintText,
  this.padding,
  required this.maxLength,
  this.autoFocus,
  this.textAlign,
  this.obscureText,
});