copyWith method

Implementation

WebApiModulesInventoryInventorySearchInventorySearchSaveNoteResponse
copyWith({int? status, bool? success, String? msg, String? noteId}) {
  return WebApiModulesInventoryInventorySearchInventorySearchSaveNoteResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    noteId: noteId ?? this.noteId,
  );
}