ExpandableRowTable constructor
ExpandableRowTable({
- required List<
ExpandedRowTableElement> elements, - String? title,
- Color firstColor = Colors.grey,
- Color secondColor = Colors.white54,
- BorderRadius? radius,
- Key? key,
Implementation
ExpandableRowTable({
required List<ExpandedRowTableElement> elements,
this.title,
this.firstColor = Colors.grey,
this.secondColor = Colors.white54,
this.radius,
super.key,
}) : _elements =
elements.where((e) => e.displayBuilder?.call() ?? true).toList();