UserSwitchException constructor
const
UserSwitchException({
- DatumExceptionCode code = DatumExceptionCode.userSwitchError,
- required String message,
- required String? oldUserId,
- required String newUserId,
Implementation
const UserSwitchException({
super.code = DatumExceptionCode.userSwitchError,
required super.message,
required this.oldUserId,
required this.newUserId,
});