PhoenixListGroup constructor

const PhoenixListGroup({
  1. Key? key,
  2. required Map<String, List<DataHelper>> groupList,
  3. bool hideLastDivider = false,
  4. EdgeInsets titlePadding = const EdgeInsets.all(8),
})

Implementation

const PhoenixListGroup({
  Key? key,
  required this.groupList,
  this.hideLastDivider = false,
  this.titlePadding = const EdgeInsets.all(8),
}) : super(key: key);