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