gradient property

Gradient? get gradient

The Gradient, or null if the decoration doesn't define one.

Implementation

Gradient? get gradient => switch (this) {
  BoxDecoration(:final gradient) || ShapeDecoration(:final gradient) => gradient,
  _ => null,
};