requestEmailVerify static method

Future requestEmailVerify(
  1. String email
)

Requests a verification email to be sent to a user's email address.

Implementation

static Future requestEmailVerify(String email) async {
  if (isNullOrEmpty(email)) {
    throw ArgumentError.notNull(email);
  }
  Map<String, dynamic> data = {'email': email};
  await LeanCloud._httpClient.post('requestEmailVerify', data: data);
}