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