call method

  1. @useResult
FSelectScrollHandleStyle call(
  1. Object? _
)
inherited

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;