replaceAttributes method

void replaceAttributes(
  1. Map<String, Object?> values
)
inherited

Replaces the entire attribute map.

Implementation

void replaceAttributes(Map<String, Object?> values) {
  _store[this] = Map<String, Object?>.from(values);
}