sendFasetLoginVCode static method

Future<String?> sendFasetLoginVCode(
  1. String account,
  2. String countryCode
)

Implementation

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