resendVerificationEmail method

Future<Response> resendVerificationEmail()

Implementation

Future<Response> resendVerificationEmail() async {
  Response response = await api.post(
    '/auth/user/email/verify/token',
    data: {},
  );

  return response;
}