getBool method

bool getBool(
  1. int idx
)

Gets a bool or false.

Implementation

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