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