addRefresh method
Implementation
Future<void> addRefresh(T value) async {
if (_emptyComponent != null && _emptyComponent!.isRendered()) await _emptyComponent?.unrender();
add(value);
_modelToComponent.add(await getItemComponent(last)) ;
await _modelToComponent.last.renderAppend(parentElement);
}