copyWith method

PaymentOption copyWith({
  1. String? title,
  2. String? url,
})

Implementation

PaymentOption copyWith({String? title, String? url}) =>
    PaymentOption(title: title ?? this.title, url: url ?? this.url);