Ionic Storage で、ストレージにログイン情報を設定したい。単一の storage.set メソッドでのみ 3 つの引数を渡す必要があります。
signIn() {
const { username, password } = this
try {
const form = await this.afAuth.auth.signInWithEmailAndPassword(username, password)
//like this
//this.storage.set('USER_INFO', username, password);
それを行う方法はありますか。お手伝いありがとう