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