SkSimpleGlobalTable constructor

const SkSimpleGlobalTable({
  1. Key? key,
  2. required List<Map<String, dynamic>> data,
  3. double? columnSpacing = 24,
  4. double horizontalMargin = 16,
  5. Color? headerBackgroundColor,
  6. Color? rowBackgroundColor,
  7. bool showBorder = true,
  8. double borderRadius = 8,
})

Implementation

const SkSimpleGlobalTable({
  Key? key,
  required this.data,
  this.columnSpacing = 24,
  this.horizontalMargin = 16,
  this.headerBackgroundColor,
  this.rowBackgroundColor,
  this.showBorder = true,
  this.borderRadius = 8,
}) : super(key: key);