static List<double> coerceFloatList( List<Object?> value, ) { return value.map((e) => (e! as num).toDouble()).toList(); }