copyWith method

AnswerShippingQuery copyWith({
  1. int? shippingQueryId,
  2. List<ShippingOption>? shippingOptions,
  3. 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,
);