getTextCode static method

Future<Map> getTextCode(
  1. String phone,
  2. String tempCode, {
  3. String zone = "86",
})

Implementation

static Future<Map> getTextCode(String phone,String tempCode,
    {String zone = "86"}) async {
  Map result = await _channel.invokeMethod('getTextCode',
      {"phoneNumber": phone, "zone": zone, "tempCode": tempCode});
  return result;
}