inList method
Implementation
@override
WhereCondition inList(List<T> values) =>
WhereCondition(
name!,
'IN',
values.map((e) => e.name).toList(),
sourceColumn: this,
);
@override
WhereCondition inList(List<T> values) =>
WhereCondition(
name!,
'IN',
values.map((e) => e.name).toList(),
sourceColumn: this,
);