sendVerifyEmail method

  1. @override
Future<void> sendVerifyEmail({
  1. VerifyEmailAuthBody? body,
  2. required String authorization,
})
override

Implementation

@override
Future<void> sendVerifyEmail({
  VerifyEmailAuthBody? body,
  required String authorization,
}) async {
  await _client.request(
    method: 'POST',
    path: '/auth/verify-email',
    headers: {'authorization': authorization},
    body: body,
  );
}