getDoubles method

  1. @nonVirtual
Future<List<double>?> getDoubles(
  1. ConfigurationKey key
)

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();
}