NullBool constructor

NullBool({
  1. bool? hasValue,
  2. bool? value,
})

Returns a new NullBool instance.

Implementation

NullBool({
  this.hasValue,
  this.value,
});