Future<List<int>> revertBlindScale( List<double> blindValues, double blindScale) async { return blindValues.map((e) => (e * blindScale).round()).toList(); }