copyWith method
AnswerShippingQuery
copyWith({
- int? shippingQueryId,
- List<
ShippingOption> ? shippingOptions, - String? errorMessage,
Implementation
AnswerShippingQuery copyWith({
int? shippingQueryId,
List<ShippingOption>? shippingOptions,
String? errorMessage,
}) =>
AnswerShippingQuery(
shippingQueryId: shippingQueryId ?? this.shippingQueryId,
shippingOptions: shippingOptions ?? this.shippingOptions,
errorMessage: errorMessage ?? this.errorMessage,
);