HeaderInformation constructor

const HeaderInformation({
  1. Key? key,
  2. String circleText = "",
  3. Color? bacgroundColorCircle,
  4. required String iconApp,
  5. Color? titleColor,
  6. Color? subColor,
  7. Color? cardColor,
})

Implementation

const HeaderInformation(
    {Key? key, this.circleText = "", this.bacgroundColorCircle, required this.iconApp, this.titleColor, this.subColor, this.cardColor})
    : super(key: key);