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