inList method

  1. @override
WhereCondition inList(
  1. List<T> values
)
override

Implementation

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