Query<T> constructor

Query<T>({
  1. required String tableName,
  2. T transformer(
    1. Map<String, dynamic>
    )?,
  3. Batch? batch,
  4. Transaction? transaction,
})

Implementation

Query({
  required this.tableName,
  this.transformer,
  this.batch,
  this.transaction,
});