ofNum static method Null safety

LDValue ofNum(
  1. num? value
)

Returns an instance for a numeric value.

Implementation

static LDValue ofNum(num? value) => value == null ? _NULL : _LDValueNumber(value);