copyWith method
Creates a copy of this object but with the given fields replaced with the new values.
Implementation
@override
YaruBackButtonThemeData copyWith({
YaruBackButtonStyle? style,
}) {
return YaruBackButtonThemeData(
style: style ?? this.style,
);
}