backgroundFillSolid property

BackgroundFillSolid? backgroundFillSolid

Describes a solid fill of a background

Implementation

BackgroundFillSolid? get backgroundFillSolid {
  if (this is BackgroundFillSolid) {
    return this as BackgroundFillSolid;
  }
  return null;
}