LxBool constructor

LxBool([
  1. bool initial = false,
  2. String? name,
  3. bool isSensitive = false
])

Creates a reactive boolean. initial defaults to false.

Implementation

LxBool([super.initial = false, String? name, bool isSensitive = false])
    : super(name: name, isSensitive: isSensitive);