copyWith method
Implementation
PublicTransportCostInfo copyWith({
int? value,
int? fraction,
int? exponent,
String? currencyCode
}) {
return PublicTransportCostInfo(
value: value ?? this.value,
fraction: fraction ?? this.fraction,
exponent: exponent ?? this.exponent,
currencyCode: currencyCode ?? this.currencyCode
);
}