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