inferValueType function

ValueType inferValueType(
  1. Object? value
)

Infers a ValueType representing the given JSON value.

Implementation

ValueType inferValueType(Object? value) =>
    _estimateJsonFieldValueType(null, value);