TelecomDto constructor

TelecomDto({
  1. TelecomDtoTelecomTypeEnum? telecomType,
  2. String? telecomNumber,
  3. String? telecomDescription,
  4. String? encryptedSelf,
})

Returns a new TelecomDto instance.

Implementation

TelecomDto({
  this.telecomType,
  this.telecomNumber,
  this.telecomDescription,
  this.encryptedSelf,
});