标签: encryption dart flutter
Future<int> updateNote(Note note) async { var db =await this.database; var result = await db.update(noteTable, note.toMap(),where: '$colId = ? ',whereArgs: [note.id]); return result; }