onReady method

Future<void> onReady(
  1. Object? arguments
)

called when the view is ready arguments if passed through CubeBuilder, if not, get arguments from ModalRoute.of(context).settings.arguments;

Implementation

// ignore: no-empty-block
Future<void> onReady(Object? arguments) {
  return Future.value();
}