getInt method

int getInt(
  1. String key
)

Gets the value for a given key as an int.

Returns 0 if the key does not exist.

Implementation

int getInt(String key) {
  return _delegate.getInt(key);
}