getDoubleOrNull method

double? getDoubleOrNull(
  1. int idx
)

Gets a nullable double.

Implementation

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