updatePayload method
Implement in subclasses to update the payload with the new value.
Implementation
@override
SubmitServiceEvent updatePayload(
SubmitServiceEvent originalPayload,
String newValue,
) {
final updatedPayload = originalPayload.deepCopy();
updatedPayload.event.updateServiceAdmin.alias = newValue.trim();
return updatedPayload;
}