push method

  1. @override
void push(
  1. Object? key,
  2. V value
)
override

Forces an update, even in cases where the value at the key has not changed or is the same instance.

Implementation

@override
void push(Object? key, V value) {
  _buildChanges((_) {
    _.change(key as K?, value);
    super.push(key, value);
  });
}