performRebuild method

  1. @override
Future<void> performRebuild()
override

Cause the component to update itself.

Called by BuildOwner after the appropriate checks have been made.

Implementation

@override
Future<void> performRebuild() async {
  _built = await buildAsync().toList();
  super.performRebuild();
}