gradient static method
BackgroundModel
gradient({
- String? appId,
- RgbModel? fromColor,
- RgbModel? toColor,
- ShadowModel? withShadow,
- StartGradientPosition? startPosition,
- EndGradientPosition? endPosition,
Implementation
static BackgroundModel gradient({
String? appId,
RgbModel? fromColor,
RgbModel? toColor,
ShadowModel? withShadow,
StartGradientPosition? startPosition,
EndGradientPosition? endPosition,
}) {
return _construct(
appId: appId,
fromColor: fromColor,
toColor: toColor,
withShadow: withShadow,
startPosition: startPosition,
endPosition: endPosition);
}