DartDeclaration constructor

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

Implementation

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