RegisterView constructor Null safety

const RegisterView(
  1. {Key? key,
  2. required ApplicationRegisterState applicationRegisterState}
)

The applicationRegisterState determines the current state of registration.

Implementation

const RegisterView({Key? key, required this.applicationRegisterState})
    : super(key: key);