addChip method
Implementation
Future<ListDiffs<T>> addChip(T data, {required bool resetQuery}) async {
final result = await _applyDiff((_chips) {
_chips.add(data);
}, source: ChipChangeOperation.addChip, resetQuery: resetQuery);
return result;
}