UserSwitchException constructor

const UserSwitchException({
  1. DatumExceptionCode code = DatumExceptionCode.userSwitchError,
  2. required String message,
  3. required String? oldUserId,
  4. required String newUserId,
})

Implementation

const UserSwitchException({
  super.code = DatumExceptionCode.userSwitchError,
  required super.message,
  required this.oldUserId,
  required this.newUserId,
});