StaticRowTable constructor

const StaticRowTable({
  1. required List<StaticRowTableElement> elements,
  2. String? title,
  3. Color firstColor = Colors.grey,
  4. Color secondColor = Colors.white54,
  5. BorderRadius? radius,
  6. Key? key,
})

Implementation

const StaticRowTable({
  required this.elements,
  this.title,
  this.firstColor = Colors.grey,
  this.secondColor = Colors.white54,
  this.radius,
  super.key,
});