ref property
Either a String used to retrieve the element at a later time via react.Component.ref
,
or a Function that gets called with the element when it is mounted.
Implementation
@override
dynamic get ref => (props[_$key__ref___$ReactPropsMixin] ?? null) as dynamic;
Either a String used to retrieve the element at a later time via react.Component.ref
,
or a Function that gets called with the element when it is mounted.
Implementation
@override
set ref(dynamic value) => props[_$key__ref___$ReactPropsMixin] = value;