JsonObjectValue constructor

const JsonObjectValue({
  1. required String key,
  2. required JSONValueBase value,
})

Json Object Value constructor.

Implementation

const JsonObjectValue({required this.key, required this.value}) : super._();