getRequiredIntFieldBy method

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

Implementation

int getRequiredIntFieldBy(
  String key, {
  int defaultValue = 0,
}) =>
    getField(key).asInt(
      defaultValue: defaultValue,
    );