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