Integer.fromBool constructor

Integer.fromBool(
  1. bool x
)

Implementation

factory Integer.fromBool(bool x) => x ? TRUE : FALSE;