getInt method

int getInt(
  1. String key
)

Force-gets the value for the given key, throws if null or wrong type

Implementation

int getInt(String key) => _internalMap[key] as int;