getBool method

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

Implementation

@nonVirtual
Future<bool?> getBool(ConfigurationKey key) async {
  var value = await resolve(key);
  if (value == null) return null;
  return value == "true";
}