ListAnimated constructor

const ListAnimated({
  1. Key? key,
  2. required IconData icon,
  3. required Color colorIcon,
  4. required Color colorText,
  5. required String text,
  6. double? horizontalOffset,
  7. Duration? duration,
  8. Color? colorShine,
  9. Color? colorBorder,
})

Implementation

const ListAnimated({
  Key? key,
  required this.icon,
  required this.colorIcon,
  required this.colorText,
  required this.text,
  this.horizontalOffset,
  this.duration,
  this.colorShine,
  this.colorBorder,
}) : super(key: key);