blackRadialGradient property
getter/setter pair
Implementation
static RadialGradient blackRadialGradient = RadialGradient(
center: const Alignment(0.02, 0.04), // Adjusts the center position
radius: 1.2, // Sets the size of the gradient circle
colors: [
Colors.black.withOpacity(0.0), // Starting color with transparency
Colors.black.withOpacity(0.55), // Ending color with 55% opacity
],
stops: [0.0, 1.0], // Defines the gradient transition points
);