FancyContainer constructor

FancyContainer({
  1. double? width,
  2. double height = 120.0,
  3. Color? color1,
  4. Color? color2,
  5. String title = 'Title',
  6. Color? textColor,
  7. String subTitle = 'SubTitle',
  8. Color? subTitleColor,
  9. EdgeInsetsGeometry? padding,
})

Implementation

FancyContainer({
  this.width,
  this.height = 120.0,
  this.color1,
  this.color2,
  this.title = 'Title',
  this.textColor,
  this.subTitle = 'SubTitle',
  this.subTitleColor,
  this.padding,
});