copyWith method

dynamic copyWith({
  1. String? title,
  2. double? amount,
})

Implementation

copyWith({String? title, double? amount}) {
  return PaynowCartItem(
      title: title ?? this.title, amount: amount ?? this.amount);
}