TableGrant constructor

TableGrant({
  1. required String name,
  2. List<String>? namespace,
  3. bool write = false,
  4. bool read = true,
  5. bool alter = false,
})

Implementation

TableGrant({required this.name, this.namespace, this.write = false, this.read = true, this.alter = false});