hookReady method

  1. @override
Future<void> hookReady()

Called immediately after hookPrepare returns.

  • this hook is invoked after the initial ZML is replaced with the primary ZML.
  • this is a good place to put any additional initializations or actions the ZML doesn't depend on.

Implementation

@override
Future<void> hookReady() async {
	await super.hookReady();
}