createScalarIndex method
Create a scalar index on a given column.
Implementation
Future<void> createScalarIndex({required String table, required String column}) async {
await room.sendRequest("database.create_scalar_index", {"table": table, "column": column});
}