copyWith method

AnswerPreCheckoutQuery copyWith({
  1. int? preCheckoutQueryId,
  2. String? errorMessage,
})

Implementation

AnswerPreCheckoutQuery copyWith({
  int? preCheckoutQueryId,
  String? errorMessage,
}) =>
    AnswerPreCheckoutQuery(
      preCheckoutQueryId: preCheckoutQueryId ?? this.preCheckoutQueryId,
      errorMessage: errorMessage ?? this.errorMessage,
    );