CustomMoreCard<T> constructor

const CustomMoreCard<T>({
  1. required List<Widget> children,
  2. String? bottomSheetTitle,
  3. VoidCallback? onTap,
  4. Key? key,
})

构造函数

Implementation

const CustomMoreCard({
  required this.children,
  this.bottomSheetTitle,
  this.onTap,
  super.key,
});