getDoubles method
Implementation
@nonVirtual
Future<List<double>?> getDoubles(ConfigurationKey key) async {
var values = await getStrings(key);
if (values == null) return null;
return values.map((e) => double.parse(e)).toList();
}
@nonVirtual
Future<List<double>?> getDoubles(ConfigurationKey key) async {
var values = await getStrings(key);
if (values == null) return null;
return values.map((e) => double.parse(e)).toList();
}