ExpandableRowTable constructor

ExpandableRowTable({
  1. required List<ExpandedRowTableElement> elements,
  2. String? title,
  3. Color firstColor = Colors.grey,
  4. Color secondColor = Colors.white54,
  5. BorderRadius? radius,
  6. 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();