totalAmount property

double get totalAmount

Implementation

double get totalAmount => list.fold(0, (double sum, UParkingReportResponse r) => sum + (r.amount ?? 0));