of static method
Returns the FBottomNavigationBarItemStyle and current states of the FBottomNavigationBar in the given context
.
Implementation
@useResult
static FBottomNavigationBarData of(BuildContext context) {
assert(debugCheckHasAncestor<FBottomNavigationBarData>('$FBottomNavigationBar', context));
return context.dependOnInheritedWidgetOfExactType<FBottomNavigationBarData>()!;
}