TdList constructor

const TdList({
  1. Key? key,
  2. TdCellGroupType? type,
  3. IconThemeData? iconTheme,
  4. TextStyle? labelStyle,
  5. TextStyle? badgeStyle,
  6. EdgeInsets? minimum,
  7. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  8. required List<Widget> children,
})

Implementation

const TdList({
  super.key,
  this.type,
  this.iconTheme,
  this.labelStyle,
  this.badgeStyle,
  this.minimum,
  this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  required this.children,
});