copyWith method
PublicBriefRouteTransportInfo
copyWith({
- PublicTransportType? type,
- List<
String> ? names, - Optional<
int?> ? color, - String? routeLogo,
Implementation
PublicBriefRouteTransportInfo copyWith({
PublicTransportType? type,
List<String>? names,
Optional<int?>? color,
String? routeLogo
}) {
return PublicBriefRouteTransportInfo(
type: type ?? this.type,
names: names ?? this.names,
color: color != null ? color.value : this.color,
routeLogo: routeLogo ?? this.routeLogo
);
}