getInt method

int getInt(
  1. String key
)

Gets the value for a given key as an int.

Implementation

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