FooterContents constructor

FooterContents({
  1. required List<FooterItem> items,
})

Implementation

FooterContents({
  required this.items,
}) : assert(items.length == 2, 'Footer must contain exactly 2 items');