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