GlassListTile constructor

const GlassListTile({
  1. Key? key,
  2. double? radius,
  3. double? border,
  4. double? blur,
  5. LinearGradient? linearGradient,
  6. LinearGradient? borderGradient,
  7. BorderRadius? borderRadius,
  8. Widget? leading,
  9. Widget? title,
  10. Widget? subtitle,
  11. Widget? trailing,
  12. void onTap()?,
})

Implementation

const GlassListTile({
  Key? key,
  this.radius,
  this.border,
  this.blur,
  this.linearGradient,
  this.borderGradient,
  this.borderRadius,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
}) : super(key: key);