QUDecoratedBorderBox constructor

QUDecoratedBorderBox({
  1. Key? key,
  2. Widget? child,
  3. String? text,
  4. bool showBorder = true,
  5. bool disabled = false,
  6. bool showCloseIcon = false,
  7. EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(8, 16, 8, 16),
  8. dynamic onTap()?,
  9. dynamic onClose()?,
})

Implementation

QUDecoratedBorderBox(
    {Key? key,
    this.child,
    this.text,
    this.showBorder = true,
    this.disabled = false,
    this.showCloseIcon = false,
    this.padding = const EdgeInsets.fromLTRB(8, 16, 8, 16),
    this.onTap,
    this.onClose})
    : super(key: key);