copyWith method

PushMessageContentInvoice copyWith({
  1. String? price,
  2. bool? isPinned,
})

Implementation

PushMessageContentInvoice copyWith({String? price, bool? isPinned}) =>
    PushMessageContentInvoice(
      price: price ?? this.price,
      isPinned: isPinned ?? this.isPinned,
    );