FxCard.rounded constructor

const FxCard.rounded({
  1. Key? key,
  2. required Widget child,
  3. BorderRadius? borderRadius,
  4. EdgeInsetsGeometry? padding,
  5. double? borderRadiusAll,
  6. Color? color,
  7. double? paddingAll,
  8. GestureTapCallback? onTap,
  9. Border? border,
  10. bool bordered = false,
  11. Clip? clipBehavior = Clip.antiAliasWithSaveLayer,
  12. BoxShape? boxShape = BoxShape.circle,
  13. FxShadow? shadow,
  14. double? marginAll,
  15. EdgeInsetsGeometry? margin,
  16. Color? splashColor,
  17. double? width,
  18. double? height,
})

Implementation

const FxCard.rounded(
    {Key? key,
      required this.child,
      this.borderRadius,
      this.padding,
      this.borderRadiusAll,
      this.color,
      this.paddingAll,
      this.onTap,
      this.border,
      this.bordered = false,
      this.clipBehavior = Clip.antiAliasWithSaveLayer,
      this.boxShape = BoxShape.circle,
      this.shadow,
      this.marginAll,
      this.margin,
      this.splashColor, this.width, this.height})
    : super(key: key);