stbUpdateUserInfoSuccess method
dynamic
stbUpdateUserInfoSuccess([
- Right<
Failure, User?> ? response
Implementation
stbUpdateUserInfoSuccess([Right<Failure, User?>? response]) {
when(
updateUserInfo(any, any).then((value) => response ?? right<Failure, User?>(null)),
);
}