call method
Returns itself.
Allows FPopoverStyle to replace functions that accept and return a FPopoverStyle, such as a style's
copyWith(...)
function.
Example
Given:
void copyWith(FPopoverStyle Function(FPopoverStyle) nestedStyle) {}
The following:
copyWith((style) => FPopoverStyle(...));
Can be replaced with:
copyWith(FPopoverStyle(...));
Implementation
@useResult
FPopoverStyle call(Object? _) => this as FPopoverStyle;