copyWith method

WebApiLogicAppFuncSessionDeal copyWith({
  1. String? dealid,
  2. String? deal,
})

Implementation

WebApiLogicAppFuncSessionDeal copyWith({String? dealid, String? deal}) {
  return WebApiLogicAppFuncSessionDeal(
      dealid: dealid ?? this.dealid, deal: deal ?? this.deal);
}