JsonValueArray constructor

const JsonValueArray({
  1. required List<JsonValue> values,
  2. dynamic extra,
  3. int? clientId,
})

Represents a JSON array

Implementation

const JsonValueArray({
  required this.values,
  this.extra,
  this.clientId,
});