TTableRowCardTheme constructor

const TTableRowCardTheme({
  1. EdgeInsets margin = const EdgeInsets.only(bottom: 8),
  2. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  3. double elevation = 1,
  4. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(8)),
  5. Color? backgroundColor,
  6. Color? selectedBackgroundColor,
  7. Border? border,
  8. TextStyle? contentTextStyle,
})

Implementation

const TTableRowCardTheme({
  this.margin = const EdgeInsets.only(bottom: 8),
  this.padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  this.elevation = 1,
  this.borderRadius = const BorderRadius.all(Radius.circular(8)),
  this.backgroundColor,
  this.selectedBackgroundColor,
  this.border,
  this.contentTextStyle,
});