TableGrant constructor

TableGrant({
  1. required String name,
  2. bool write = false,
  3. bool read = true,
  4. bool alter = false,
})

Implementation

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