join method
INNER JOIN
Implementation
@override
QueryBuilderInterface<T> join(
String table,
String first,
String operator,
String second, [
String type = 'INNER',
]) {
_joins.add({
'type': type,
'table': table,
'first': first,
'operator': operator,
'second': second,
});
return this;
}