FastGroupRow constructor

FastGroupRow({
  1. required List<FastGroupModel> groups,
  2. int rowNum = 4,
  3. Color backgroundColor = Colors.transparent,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(10),
  5. FastGroupRowItem? onTap,
  6. double iconSize = 55,
})

Implementation

FastGroupRow({
  required this.groups,
  this.rowNum = 4,
  this.backgroundColor = Colors.transparent,
  this.padding = const EdgeInsets.all(10),
  this.onTap,
  this.iconSize = 55,
});