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