getBool method

bool? getBool(
  1. String name, {
  2. bool checked = true,
})

/////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// Get tag as HBool or raise UnknownNameException or ClassCastException.

Implementation

// Get Conveniences
//////////////////////////////////////////////////////////////////////////

  /// Get tag as HBool or raise UnknownNameException or ClassCastException.
  bool? getBool(String name, {bool checked = true}) =>
      (get(name, checked: checked) as HBool?)?.val;