boolValue property

bool? boolValue

Implementation

bool? get boolValue {
  final value = this.value;
  return value is bool ? value : null;
}