stbUpdateUserInfoSuccess method

dynamic stbUpdateUserInfoSuccess([
  1. Right<Failure, User?>? response
])

Implementation

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