stbResendVerificationCodeSuccess method
dynamic
stbResendVerificationCodeSuccess([
- Right<
Failure, Unit> ? response
Implementation
stbResendVerificationCodeSuccess([Right<Failure, Unit>? response]) {
when(resendVerificationCode(any, any)).thenAnswer(
(realInvocation) async => response ?? right<Failure, Unit>(unit),
);
}