resetPwd static method

Future<String?> resetPwd(
  1. String account,
  2. String vcode,
  3. String password
)

Implementation

static Future<String?> resetPwd(String account,String vcode,String password) async {
  final String? result =  await _channel.invokeMethod('reset_password'
      ,<String,dynamic>{'account':account,'vcode':vcode,'password':password});
  return result;
}