shadow2xl property

T get shadow2xl

Tailwind shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25)

Implementation

T get shadow2xl => this
  ..boxShadow = const [
    BoxShadow(
        color: Color(0x40000000),
        offset: Offset(0, 25),
        blurRadius: 50,
        spreadRadius: -12),
  ];