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