FancyContainer constructor

const FancyContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color1,
  5. Color? color2,
  6. String? title,
  7. Color? textColor,
  8. String? subtitle,
  9. Color? subtitleColor,
  10. EdgeInsetsGeometry? padding,
})

Implementation

const FancyContainer(
    {super.key,
    this.width,
    this.height,
    this.color1,
    this.color2,
    this.title,
    this.textColor,
    this.subtitle,
    this.subtitleColor,
    this.padding});