updateEmail method
Implementation
Future<ResponseItemDTO> updateEmail({
ProfileEmailChangeBody? profileEmail,
}) async {
return await _repository!.updateEmail(
profileEmail: profileEmail,
);
}
Future<ResponseItemDTO> updateEmail({
ProfileEmailChangeBody? profileEmail,
}) async {
return await _repository!.updateEmail(
profileEmail: profileEmail,
);
}