PlexCardGlassEffect constructor

const PlexCardGlassEffect({
  1. Key? key,
  2. Color? shadowColor,
  3. Color? shadowColorDark,
  4. Color? glassColor,
  5. Color? glassColorDark,
  6. Color? borderColor,
  7. Color? borderColorDark,
  8. double borderWidth = 1,
  9. double cornerRadius = PlexDim.medium,
  10. required Widget child,
})

Implementation

const PlexCardGlassEffect({
  super.key,
  this.shadowColor,
  this.shadowColorDark,
  this.glassColor,
  this.glassColorDark,
  this.borderColor,
  this.borderColorDark,
  this.borderWidth = 1,
  this.cornerRadius = PlexDim.medium,
  required this.child,
});