backgroundFillGradient property

BackgroundFillGradient? backgroundFillGradient

Describes a gradient fill of a background

Implementation

BackgroundFillGradient? get backgroundFillGradient {
  if (this is BackgroundFillGradient) {
    return this as BackgroundFillGradient;
  }
  return null;
}