copyWith method
Implementation
TableTheme copyWith({
Border? border,
Color? backgroundColor,
TableCellTheme? cellTheme,
}) {
return TableTheme(
border: border ?? this.border,
backgroundColor: backgroundColor ?? this.backgroundColor,
cellTheme: cellTheme ?? this.cellTheme,
);
}