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