anchorContext property

BuildContext get anchorContext

Implementation

BuildContext get anchorContext => _anchorContext;
  1. @override
set anchorContext (BuildContext value)
override

Implementation

@override
set anchorContext(BuildContext value) {
  if (_anchorContext != value) {
    setState(() {
      _anchorContext = value;
    });
  }
}