getBoolean method

bool getBoolean(
  1. String key, [
  2. bool defaultValue = false
])

Gets boolean input

Implementation

bool getBoolean(String key, [bool defaultValue = false]) =>
    _input.boolean(key, defaultValue);