getInstance static method
Implementation
static RegistrationRepository? getInstance() {
if (_singleton == null) {
throw SpinachUnInitializedException(
"RegistrationRepository is not properly initialized");
}
return _singleton;
}
static RegistrationRepository? getInstance() {
if (_singleton == null) {
throw SpinachUnInitializedException(
"RegistrationRepository is not properly initialized");
}
return _singleton;
}