copyWith method
Implementation
TCsvEditorTheme copyWith({
EdgeInsetsGeometry? padding,
double? tableMaxHeight,
double? dropzoneHeight,
bool? dense,
Color? dropzoneColor,
Color? dropzoneBorderColor,
}) {
return TCsvEditorTheme(
padding: padding ?? this.padding,
tableMaxHeight: tableMaxHeight ?? this.tableMaxHeight,
dropzoneHeight: dropzoneHeight ?? this.dropzoneHeight,
dense: dense ?? this.dense,
dropzoneColor: dropzoneColor ?? this.dropzoneColor,
dropzoneBorderColor: dropzoneBorderColor ?? this.dropzoneBorderColor,
);
}