copyWith method
Implementation
RouteExitSignTable copyWith({
RouteExitSignTableColor? backgroundColor,
String? text
}) {
return RouteExitSignTable(
backgroundColor: backgroundColor ?? this.backgroundColor,
text: text ?? this.text
);
}