get method
Implementation
FactoryElement<E> get() {
final ref = Ref(tag: null);
return FactoryElement(
ref: ref,
)..set(
creator.callback(ref),
);
}
FactoryElement<E> get() {
final ref = Ref(tag: null);
return FactoryElement(
ref: ref,
)..set(
creator.callback(ref),
);
}