我正在尝试使用此方法从包 intl 格式化使用文本小部件显示的数字
var formatCurrency =
NumberFormat.currency(customPattern: '###,###.##', locale: 'nl_NL');
这就是我在文本小部件中使用该方法的方式
controller.formatCurrency.format(controller.data['items'][index]['taxable_amount']).toString()
这是我得到的错误
The following NoSuchMethodError was thrown building:
Class 'String' has no instance getter 'isNegative'.
Receiver: "1000.00"
Tried calling: isNegative
如何删除 isNegative 部分?