copyWith method

RouteExitSignTable copyWith({
  1. RouteExitSignTableColor? backgroundColor,
  2. String? text,
})

Implementation

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