of static method
Returns the FButtonData of the FButton in the given context
.
Implementation
@useResult
static FButtonData of(BuildContext context) {
assert(debugCheckHasAncestor<FButtonData>('$FButton', context));
return context.dependOnInheritedWidgetOfExactType<FButtonData>()!;
}