getIntValOr method

int? getIntValOr(
  1. String key
)

Implementation

int? getIntValOr(String key) {
  return getNumValOr(key)?.toInt();
}