asyncValidatingIcon property

Widget asyncValidatingIcon
final

When suffixButton is SuffixButton.asyncValidating, this icon will be displayed.

Default

const SizedBox(
 height: 24,
 width: 24,
 child: Padding(
   padding: const EdgeInsets.all(8.0),
   child: const CircularProgressIndicator(
     strokeWidth: 2.0,
   ),
 ),
)

Implementation

final Widget asyncValidatingIcon;