我没有对flutter的基本代码(创建flutter项目时自然生成的镖代码)进行任何更改。 我连接了ios模拟器(我尝试使用iPhone 11 pro和SE 2都失败了),并且在运行时出现错误。
这是我的代码。正如我所说,我什么也没改变
public class AccountService {
public boolean closeAccount(String accountNumber) {
Account target = this.getAccountByNumber(accountNumber);
if (target != null && target.getBalance() >= 0 ) {
target.setStatus(Status.CLOSING);
return this.saveOrUpdateAccount(target);
}
return false;
}
public Account getAccountByNumber(String accountNumber) {...}
public boolean saveOrUpdateAccount(Account account) {...}
}
无法为模拟器构建应用程序。 在iPhone 11 Pro上启动应用程序时出错。