getInt method

int getInt(
  1. String key
)

Reads a key value of int type from Map.

If value/map is NULL or not int type return default value defaultInt

Example:

map.getInt("id") // 11

Implementation

int getInt(String key) => FxMap.getInt(this, key);