UITextInputBlockData constructor

UITextInputBlockData({
  1. String? key,
  2. String? value,
  3. String? placeholder,
  4. String? regex,
  5. UITooltipMessage? errorMessage,
  6. UITextInputKeyboardType? keyboardType,
  7. bool? secure,
  8. bool? autocorrect,
  9. int? size,
  10. Color? color,
  11. FontDesign? design,
  12. FontWeight? weight,
  13. TextAlign? textAlign,
  14. FrameData? frame,
})

Implementation

UITextInputBlockData({
  this.key,
  this.value,
  this.placeholder,
  this.regex,
  this.errorMessage,
  this.keyboardType,
  this.secure,
  this.autocorrect,
  this.size,
  this.color,
  this.design,
  this.weight,
  this.textAlign,
  this.frame,
});