Shadow_ui_bottom constructor

Shadow_ui_bottom({
  1. Key? key,
  2. required Color bgcolor,
  3. required List<Widget> widgets,
  4. required List<IconData> icon,
  5. required Color activeshadowcolor,
  6. required Color activeicon,
  7. required List title,
})

Implementation

Shadow_ui_bottom({
  Key? key,
  required this.bgcolor,
  required this.widgets,
  required this.icon,
  required this.activeshadowcolor,
  required this.activeicon,
  required this.title,
}) : super(key: key);