FxIconBox constructor

const FxIconBox({
  1. required Widget child,
  2. String? label,
  3. Function? onTap,
  4. Color? boxColor,
  5. BorderRadius? borderRadius,
  6. EdgeInsetsGeometry? margin,
  7. EdgeInsetsGeometry? padding,
  8. double? size,
  9. List<BoxShadow>? boxShadow,
})

create widget that wrap with box

Implementation

const FxIconBox({
  required this.child,
  this.label,
  this.onTap,
  this.boxColor,
  this.borderRadius,
  this.margin,
  this.padding,
  this.size,
  this.boxShadow,
});