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