attach method

void attach(
  1. T element
)

Attaches element to this ref.

Called internally by the Bloom browser mount engine upon element creation.

Implementation

// ignore: use_setters_to_change_properties
void attach(T element) => _value = element;