getBoolOrNull method

bool? getBoolOrNull(
  1. String key
)

Gets a nullable bool.

Implementation

bool? getBoolOrNull(String key) {
  return _get<bool>(key);
}