MapDj constructor

MapDj({
  1. dynamic descriptionDj,
  2. String? name,
  3. String? keyDataType,
  4. String? valueDataType,
  5. Map<String, String>? values,
  6. CodePartDjType codePartDjType = CodePartDjType.Map,
})

Implementation

MapDj({
  descriptionDj,
  this.name,
  this.keyDataType,
  this.valueDataType,
  this.values,
  CodePartDjType codePartDjType = CodePartDjType.Map,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );