PlatformCardArgs constructor

const PlatformCardArgs({
  1. double? pressOpacity = 1,
  2. FutureTappableCallback? onHover,
  3. double? pressScale = Tappable.defaultScale,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. BorderRadius? borderRadius,
  7. Color? color,
  8. double? height,
  9. double? width,
  10. bool? useShadow = true,
  11. double? minWidth,
  12. PlatformCardTheme? theme,
  13. double? minHeight,
  14. FutureTappableCallback? onTap,
  15. bool? shouldClip,
  16. FutureTappableCallback? onLongPress,
  17. List<BoxShadow>? shadow,
})

Implementation

const PlatformCardArgs({
  this.pressOpacity = 1,
  this.onHover,
  this.pressScale = Tappable.defaultScale,
  this.padding,
  this.margin,
  this.borderRadius,
  this.color,
  this.height,
  this.width,
  this.useShadow = true,
  this.minWidth,
  this.theme,
  this.minHeight,
  this.onTap,
  this.shouldClip,
  this.onLongPress,
  this.shadow,
});