getBoolOrNull method

bool? getBoolOrNull(
  1. int idx
)

Gets a nullable bool.

Implementation

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