copyWith method

TCsvEditorTheme copyWith({
  1. EdgeInsetsGeometry? padding,
  2. double? tableMaxHeight,
  3. double? dropzoneHeight,
  4. bool? dense,
  5. Color? dropzoneColor,
  6. Color? dropzoneBorderColor,
})

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,
  );
}