tagOf static method

Object? tagOf(
  1. BuildContext context
)

Implementation

static Object? tagOf(BuildContext context) {
  return InheritedModel.inheritFrom<StageData>(context, aspect: _tagAspect)!.tag;
}