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