getBool method

bool getBool(
  1. List<String> keys, {
  2. bool def = false,
})

Implementation

bool getBool(List<String> keys, {bool def = false}) {
  return TMap.getBool(this, keys, defaultValue: def);
}