copyWith method
Implementation
Business copyWith({ String? businessArea,
String? tel,
String? parkingType,
String? alias,
String? cost,
String? cPid,
String? openTimeToday,
String? openTimeWeek,
String? tag,
}) => Business( businessArea: businessArea ?? _businessArea,
tel: tel ?? _tel,
parkingType: parkingType ?? _parkingType,
alias: alias ?? _alias,
cost: cost ?? _cost,
cPid: cPid ?? _cPid,
openTimeToday: openTimeToday ?? _openTimeToday,
openTimeWeek: openTimeWeek ?? _openTimeWeek,
tag: tag ?? _tag,
);