Order copyWith({ String? id, num? amount, String? description, }) { return Order( id: id ?? this.id, amount: amount ?? this.amount, description: description ?? this.description, ); }