verifyMobilePhone static method

Future verifyMobilePhone(
  1. String mobile,
  2. String code
)

Implementation

static Future verifyMobilePhone(String mobile, String code) async {
  String path = 'verifySmsCode/$code';
  Map<String, dynamic> data = {
    'mobilePhoneNumber': mobile,
  };
  await LeanCloud._httpClient.post(path, data: data);
}