SqliteDatabaseGrant constructor

SqliteDatabaseGrant({
  1. required String name,
  2. List<String>? namespace,
  3. bool createTable = true,
  4. bool drop = false,
  5. bool inspect = true,
  6. bool listTables = true,
  7. bool execute = true,
  8. List<SqliteTableGrant>? tables,
})

Implementation

SqliteDatabaseGrant({
  required this.name,
  this.namespace,
  this.createTable = true,
  this.drop = false,
  this.inspect = true,
  this.listTables = true,
  this.execute = true,
  this.tables,
});