getApiIntOrDefault method

int? getApiIntOrDefault(
  1. K key, [
  2. int? defaultValue,
  3. List<K> alternativeKeys = const []
])

Implementation

int? getApiIntOrDefault(
  K key, [
  int? defaultValue,
  List<K> alternativeKeys = const [],
]) {
  return _parseInt(_valueFor(key, alternativeKeys), defaultValue);
}