addAll method

void addAll(
  1. Map<K, V> other
)

Add all entries (convenience method)

Implementation

void addAll(Map<K, V> other) {
  final result = tryAddAll(other);
  if (result.isFailure) {
    RxLogger.logError(result.errorOrNull!, context: 'Map');
  }
}