gradient static method

ModernStyleOptions gradient({
  1. required Gradient gradient,
  2. BorderRadius? borderRadius,
  3. 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,
  );
}