boolean method

bool boolean(
  1. int index, [
  2. bool defaultValue = false
])

Get bool value from JSON Array. For lazier person, you can use shorthand method b.

Implementation

bool boolean(int index, [bool defaultValue = false]) =>
    _get(index, defaultValue);