LitFooter constructor

const LitFooter({
  1. Key? key,
  2. String title = "Footer",
  3. required Widget child,
  4. List<Color> gradientColors = LitFooterDefaultStyling.colorsLight,
})

Implementation

const LitFooter({
  Key? key,
  this.title = "Footer",
  required this.child,
  this.gradientColors = LitFooterDefaultStyling.colorsLight,
}) : super(key: key);