glass method
Implementation
Container glass({Color? tint}) => copyWith(
decoration: BoxDecoration(
color: (tint ?? Colors.white.withValues(alpha: 0.1)),
borderRadius: BorderRadius.circular(20),
boxShadow: [BoxShadow(color: Colors.black12, blurRadius: 10)],
),
);