JsonElement constructor

JsonElement({
  1. String? key,
  2. dynamic value,
  3. required JsonType type,
  4. bool selected = false,
})

Implementation

JsonElement({
  this.key,
  this.value,
  required this.type,
  this.selected = false,
});