ElevarmIconRipple constructor

const ElevarmIconRipple({
  1. required IconData iconAssetName,
  2. @Deprecated('Use variant instead if possible.') Color? backgroundColor,
  3. @Deprecated('Use variant instead if possible.') Color? rippleColor,
  4. @Deprecated('Use variant instead if possible.') Color? iconColor,
  5. double height = 48,
  6. double width = 48,
  7. double rippleSize = 8,
  8. ElevarmIconRippleVariant? variant,
  9. Key? key,
})

Implementation

const ElevarmIconRipple({
  required this.iconAssetName,
  @Deprecated('Use variant instead if possible.') this.backgroundColor,
  @Deprecated('Use variant instead if possible.') this.rippleColor,
  @Deprecated('Use variant instead if possible.') this.iconColor,
  this.height = 48,
  this.width = 48,
  this.rippleSize = 8,
  this.variant,
  super.key,
});