JoinBuilder constructor

JoinBuilder(
  1. JoinType type,
  2. Query<dynamic, QueryWhere> from,
  3. String to(),
  4. String? key,
  5. String? value, {
  6. String? op = '=',
  7. String? alias,
  8. List<String> additionalFields = const [],
  9. bool aliasAllFields = false,
})

Implementation

JoinBuilder(this.type, this.from, this.to, this.key, this.value,
    {this.op = '=',
    this.alias,
    this.additionalFields = const [],
    this.aliasAllFields = false}) {
  //assert(to != null,
  //    'computation of this join threw an error, and returned null.');
}