getBool method

bool? getBool(
  1. String key
)

Function to get a bool from the room

Implementation

bool? getBool(String key) {
  var cdata = getKey(key);
  try {
    return cdata as bool;
  } catch (e) {
    return null;
  }
}