updateEmail method

Future<ResponseItemDTO> updateEmail({
  1. ProfileEmailChangeBody? profileEmail,
})

Implementation

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