getInt method

int getInt(
  1. List<String> keys, {
  2. int def = 0,
})

Implementation

int getInt(List<String> keys, {int def = 0}) {
  return TMap.getInt(this, keys, defaultValue: def);
}