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