image property

DecorationImage? get image

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

Implementation

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