gradient static method
- required Gradient gradient,
- BorderRadius? borderRadius,
- List<
BoxShadow> ? shadows,
Creates a gradient background style preset.
Implementation
static ModernStyleOptions gradient({
required Gradient gradient,
BorderRadius? borderRadius,
List<BoxShadow>? shadows,
}) {
return ModernStyleOptions(
backgroundGradient: gradient,
borderRadius: borderRadius,
shadows: shadows,
);
}