JsonValueNumber constructor

const JsonValueNumber({
  1. required double value,
  2. dynamic extra,
  3. int? clientId,
})

Represents a numeric JSON value

Implementation

const JsonValueNumber({
  required this.value,
  this.extra,
  this.clientId,
});