scrollTags method

void scrollTags()

Implementation

void scrollTags() {
  WidgetsBinding.instance.addPostFrameCallback((_) {
    if (_scrollController != null && _scrollController!.object.hasClients) {
      _scrollController!.object.animateTo(
        _scrollController!.object.position.maxScrollExtent,
        duration: Duration(milliseconds: _tagScrollAnimationSpeedInMs),
        curve: Curves.linear,
      );
    }
  });
}