GpProfileDocumentConfig constructor

const GpProfileDocumentConfig({
  1. String hintText = 'Document number',
  2. TextInputType keyboardType = TextInputType.number,
  3. String? validator(
    1. String?
    )?,
  4. List<TextInputFormatter>? inputFormatters,
  5. String? helperText,
  6. int? maxLength,
})

Implementation

const GpProfileDocumentConfig({
  this.hintText = 'Document number',
  this.keyboardType = TextInputType.number,
  this.validator,
  this.inputFormatters,
  this.helperText,
  this.maxLength,
});