InputBoxComponent constructor

const InputBoxComponent({
  1. Key? key,
  2. String? label,
  3. EdgeInsets edgeInsets = const EdgeInsets.all(0),
  4. String? childText,
  5. GestureTapCallback? onTap,
  6. Widget? children,
  7. Widget? childrenSizeBox,
  8. double heightOfSizebox = 48,
  9. bool allowClear = false,
  10. dynamic clearOnTab()?,
  11. String? errorMessage,
  12. bool isRequired = false,
  13. IconData? icon,
  14. bool? editable,
})

Implementation

const InputBoxComponent({
  Key? key,
  this.label,
  this.edgeInsets = const EdgeInsets.all(0),
  this.childText,
  this.onTap,
  this.children,
  this.childrenSizeBox,
  this.heightOfSizebox = 48,
  this.allowClear = false,
  this.clearOnTab,
  this.errorMessage,
  this.isRequired = false,
  this.icon,
  this.editable,
}) : super(key: key);