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