copyWith method
Creates a copy of this theme with the given fields replaced with new values.
Implementation
TablePlusResizeHandleTheme copyWith({
double? width,
Color? color,
double? thickness,
double? indent,
double? endIndent,
}) {
return TablePlusResizeHandleTheme(
width: width ?? this.width,
color: color ?? this.color,
thickness: thickness ?? this.thickness,
indent: indent ?? this.indent,
endIndent: endIndent ?? this.endIndent,
);
}