currentTags property

  1. @override
List<String> currentTags

Gets a list of tags as defined with '#' in source that were seen during the latest Continue() call.

Implementation

@override
List<String> get currentTags {
  ifAsyncWeCant("call currentTags since it's a work in progress");
  return state.currentTags;
}