containsAll method

bool containsAll(
  1. Iterable<Object?> other
)

Implementation

bool containsAll(Iterable<Object?> other) {
  final modifiedValue = value;
  final result = modifiedValue.containsAll(other);
  value = modifiedValue;
  return result;
}