fastLogin static method

Future<String?> fastLogin(
  1. String account,
  2. String countryCode,
  3. String vcode
)

Implementation

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