KeyValue constructor

KeyValue({
  1. required String name,
  2. required String type,
  3. required dynamic value,
  4. required List<String> comments,
  5. bool nullable = false,
})

Implementation

KeyValue({
  required this.name,
  required this.type,
  required this.value,
  required this.comments,
  this.nullable = false,
});