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.addServiceAdmin.alias = newValue;
return updatedPayload;
}