Float16 constructor

Float16([
  1. num? f
])

Implementation

Float16([num? f]) : _h = f == null ? 0 : doubleToFloat16(f);