nullSubstitution
Replace a strictly null source member with a fixed destination value.
forMember(
(destination) => destination.fullName,
nullSubstitution('Unknown user'),
);
Only null is substituted. An undefined value is unchanged; use undefinedSubstitution() for that case. Object substitutions are assigned as provided without nested mapping.