sendPhoneRegVCode static method

Future<String?> sendPhoneRegVCode(
  1. String phone,
  2. String countryCode
)

Implementation

static Future<String?> sendPhoneRegVCode(String phone,String countryCode) async {
  final String? result =  await _channel.invokeMethod('send_phone_reg_vcode'
      ,<String,dynamic>{'phone':phone,'country_code':countryCode});
  return result;
}