JsonValueObject constructor

const JsonValueObject({
  1. required List<JsonObjectMember> members,
  2. dynamic extra,
  3. int? clientId,
})

Represents a JSON object

Implementation

const JsonValueObject({
  required this.members,
  this.extra,
  this.clientId,
});