onViewModelReady method
Fires when the ViewModel is first created or re-created
This will fire multiple times when createNewViewModelOnInsert is set to true
Implementation
@override
void onViewModelReady(PaymentViewModel viewModel) {
super.onViewModelReady(viewModel);
viewModel.init(paymentCode);
}