copyWith method
Implementation
WebApiModulesHomeControlsPickListUtilityItemStartSessionResponse copyWith(
{String? sessionId,
String? inventoryTypes,
String? inventoryTypeIds,
int? status,
bool? success,
String? msg}) {
return WebApiModulesHomeControlsPickListUtilityItemStartSessionResponse(
sessionId: sessionId ?? this.sessionId,
inventoryTypes: inventoryTypes ?? this.inventoryTypes,
inventoryTypeIds: inventoryTypeIds ?? this.inventoryTypeIds,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}