BoxView constructor

const BoxView({
  1. required dynamic child,
  2. Color? color,
  3. bool filled = true,
  4. bool tinted = false,
  5. bool oval = false,
  6. bool? small,
  7. bool wrap = false,
  8. double boxSize = kBoxSize,
  9. double? fontSize,
  10. double? iconSize,
  11. EdgeInsetsGeometry? margin = const EdgeInsets.symmetric(horizontal: 5),
  12. VoidCallback? onTap,
  13. Key? key,
})

Implementation

const BoxView({
  required this.child,
  this.color,
  this.filled = true,
  this.tinted = false,
  this.oval = false,
  this.small,
  this.wrap = false,
  this.boxSize = kBoxSize,
  this.fontSize,
  this.iconSize,
  this.margin = const EdgeInsets.symmetric(horizontal: 5),
  this.onTap,
  Key? key,
}) : super(key: key);