HBool constructor

HBool(
  1. bool val
)

Factory Constructor from boolean value

Implementation

factory HBool(bool val) => val ? TRUE : FALSE;