call method

  1. @useResult
FFocusedOutlineStyle call(
  1. Object? _
)
inherited

Returns itself.

Allows FFocusedOutlineStyle to replace functions that accept and return a FFocusedOutlineStyle, such as a style's copyWith(...) function.

Example

Given:

void copyWith(FFocusedOutlineStyle Function(FFocusedOutlineStyle) nestedStyle) {}

The following:

copyWith((style) => FFocusedOutlineStyle(...));

Can be replaced with:

copyWith(FFocusedOutlineStyle(...));

Implementation

@useResult
FFocusedOutlineStyle call(Object? _) => this as FFocusedOutlineStyle;