put method

  1. @override
void put(
  1. dynamic locator,
  2. dynamic component
)
override

Puts a new reference into this reference map.

  • locator a locator to find the reference by.
  • component a component reference to be added.

Implementation

@override
void put(locator, component) {
  super.put(locator, component);

  if (opened) {
    Opener.openOne(null, component);
  }
}