I have seen many answers in SO but all are related to android.
I want to get the last ID entered in the table.This is my user table:
await db.execute("CREATE TABLE User("
"userId INTEGER PRIMARY KEY,"
"first_name TEXT,"
"last_name TEXT,"
"user_password TEXT,"
"mobile_no TEXT,"
"email_id TEXT,"
")");
print("User Table created");