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