getIntValue static method

int getIntValue(
  1. String key, {
  2. int defaultValue = 0,
})

Implementation

static int getIntValue(String key, {int defaultValue = 0}) {
  return Field.getInt(_data[key], defaultValue);
}