I got it working by using id instead.
this.storage.set(option.id, this.option);
will save a data object with a unique id into sqlite so you can save as many as you want without overriding… and you can also erase each without affecting others!
I got it working by using id instead.
this.storage.set(option.id, this.option);
will save a data object with a unique id into sqlite so you can save as many as you want without overriding… and you can also erase each without affecting others!