cleanAccounts method

void cleanAccounts()

删除所有账号

Implementation

void cleanAccounts() {
  if (Platform.isIOS) {
    _channel.invokeMethod('cleanAccounts');
  } else {
    xgApi.delAllAccount();
  }
}