NumericValue constructor

NumericValue({
  1. double? doubleValue,
  2. String? int64Value,
})

Implementation

NumericValue({
  this.doubleValue,
  this.int64Value,
});