如何使用 Dart/Flutter 中的排名制作计算公式?

How to make a calculation formula using rank in Dart/Flutter?

我有一个这样的公式:NPV = Value / (1 + Rate of discount) ^Time。然后我使用 double 在 Flutter 中创建逻辑,如下所示:

我得到等级公式的符号错误 ^。我怎样才能完成计算?

import 'dart:math' as math;

nVP = value * math.pow(1 + rate, time);