buildPage method
Implementation
@nonVirtual
Page<dynamic> buildPage(BuildContext context) {
return animated
? buildAnimatedPage(context)
: NoAnimationPage<dynamic>(
key: key,
name: screenName,
child: builder(context),
);
}