sendChange method

  1. @protected
  2. @nonVirtual
void sendChange(
  1. Map<Key, KeyAndValue<Key, Object?>> map
)

Add changed map to subject to trigger.

Implementation

@protected
@nonVirtual
void sendChange(Map<Key, KeyAndValue<Key, Object?>> map) {
  assert(_debugAssertNotDisposed());

  try {
    _keyValuesSubject.add(map);
  } on StateError {
    assert(_debugAssertNotDisposed());
  }
}