getBools method

  1. @nonVirtual
Future<List<bool>?> getBools(
  1. ConfigurationKey key
)

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