getIntValOr method

int? getIntValOr(
  1. dynamic key
)

Implementation

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