copyWith method
Implementation
WebApiModulesHomeControlsPickListUtilityItemCompleteSessionResponse copyWith(
{String? pickListId,
String? pickListNumber,
int? status,
bool? success,
String? msg}) {
return WebApiModulesHomeControlsPickListUtilityItemCompleteSessionResponse(
pickListId: pickListId ?? this.pickListId,
pickListNumber: pickListNumber ?? this.pickListNumber,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}