solid static method

BackgroundModel solid(
  1. String appId,
  2. RgbModel color,
  3. ShadowModel withShadow
)

Implementation

static BackgroundModel solid(
    String appId, RgbModel color, ShadowModel withShadow) {
  return _construct(
      appId: appId, fromColor: color, toColor: color, withShadow: withShadow);
}