MUISitemapFooter constructor

const MUISitemapFooter({
  1. Key? key,
  2. required List<MUISitemapCategory> categories,
  3. required String companyName,
  4. TextStyle companyNameStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  5. TextStyle itemsStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  6. TextStyle hoverStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500, color: Colors.blue),
  7. TextStyle categoryNameStyle = const TextStyle(fontSize: 14, fontWeight: FontWeight.w700, color: Colors.grey),
  8. MUISitemapAlignment alignment = MUISitemapAlignment.left,
})

Implementation

const MUISitemapFooter({
  super.key,
  required this.categories,
  required this.companyName,
  this.companyNameStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  this.itemsStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  this.hoverStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
    color: Colors.blue,
  ),
  this.categoryNameStyle = const TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.w700,
    color: Colors.grey,
  ),
  this.alignment = MUISitemapAlignment.left,
});