removeAt method

Future<ListDiffs<T>> removeAt(
  1. int index, {
  2. required bool resetQuery,
})

Implementation

Future<ListDiffs<T>> removeAt(int index, {required bool resetQuery}) async {
  return await _applyDiff((_chips) {
    _chips.removeAt(index);
  }, source: ChipChangeOperation.deleteChip, resetQuery: resetQuery);
}