sendVerifyEmail method
Future<void>
sendVerifyEmail({
- VerifyEmailAuthBody? body,
- 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,
);
}