get method

FactoryElement<E> get()

Implementation

FactoryElement<E> get() {
  final ref = Ref(tag: null);

  return FactoryElement(
    ref: ref,
  )..set(
      creator.callback(ref),
    );
}