BottomSheetGroupMenuView constructor Null safety

BottomSheetGroupMenuView(
  1. {Key? key,
  2. List<CowGroup> groups = const [],
  3. CowGroup? currentGroup,
  4. Color backgroundColor = Colors.white,
  5. Function? onTap}
)

Implementation

BottomSheetGroupMenuView({
  Key? key,
  this.groups = const [],
  this.currentGroup,
  this.backgroundColor = Colors.white,
  this.onTap,
}) : super(key: key);