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