TableScript constructor

const TableScript({
  1. required String tableName,
  2. required String script,
  3. required int startSync,
  4. int? retentionDays,
  5. bool readOnly = false,
  6. bool writeOnly = false,
})

Implementation

const TableScript({
  required this.tableName,
  required this.script,
  required this.startSync,
  this.retentionDays,
  this.readOnly = false,
  this.writeOnly = false,
});