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