getIntOrNull method

int? getIntOrNull(
  1. int idx
)

Gets a nullable int.

Implementation

int? getIntOrNull(int idx) {
  return _get<int>(idx);
}