BackgroundModel constructor

BackgroundModel({
  1. PublicMediumModel? backgroundImage,
  2. bool? useProfilePhotoAsBackground,
  3. StartGradientPosition? beginGradientPosition,
  4. EndGradientPosition? endGradientPosition,
  5. ShadowModel? shadow,
  6. List<DecorationColorModel>? decorationColors,
  7. BorderRadiusModel? borderRadius,
  8. bool? border,
  9. EdgeInsetsGeometryModel? padding,
  10. EdgeInsetsGeometryModel? margin,
})

Implementation

BackgroundModel({
  this.backgroundImage,
  this.useProfilePhotoAsBackground,
  this.beginGradientPosition,
  this.endGradientPosition,
  this.shadow,
  this.decorationColors,
  this.borderRadius,
  this.border,
  this.padding,
  this.margin,
});