Footer1 constructor

const Footer1({
  1. Key? key,
  2. required String title,
  3. TextStyle titleStyle = const TextStyle(),
  4. List<Widget> action = const [],
})

Implementation

const Footer1({
  Key? key,
  required this.title,
  this.titleStyle = const TextStyle(),
  required this.logo,
  this.action = const [],
}) : super(key: key);