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