boolfinal

保留字 truefalse 表示该类仅有的两个实例。

尝试扩展或实现 bool 类会导致编译时错误。

可用扩展

构造函数

bool.fromEnvironment(String name, {bool defaultValue = false})
返回编译配置环境中的 name 的布尔值。
const
factory
bool.hasEnvironment(String name)
判断 name 是否在编译配置环境中声明。
const
factory

属性

hashCode int
此对象的哈希码。
无设置器override
runtimeType Type
对象的运行时类型表示。
无设置器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
toString() String
返回 "true""false"
override

运算符

operator &(bool other) bool
此与 other 的逻辑与。
operator ==(Object other) bool
等于运算符。
继承
operator ^(bool other) bool
此与 other 的逻辑异或。
operator |(bool other) bool
此与 other 的逻辑或。

静态方法

parse(String source, {bool caseSensitive = true}) bool
source 解析为可选的忽略大小写的布尔字面量。
tryParse(String source, {bool caseSensitive = true}) bool?
source 解析为可选的忽略大小写的布尔字面量。