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