DartDeclaration constructor

DartDeclaration({
  1. required JsonKeyMutate jsonKey,
  2. String? type,
  3. String? name,
  4. String? assignment,
})

Implementation

DartDeclaration({
  required this.jsonKey,
  this.type,
  this.name,
  this.assignment,
}) {
  keyComands = Commands.keyComands;
  valueCommands = Commands.valueCommands;
}