Telecom constructor

Telecom({
  1. TelecomTelecomTypeEnum? telecomType,
  2. String? telecomNumber,
  3. String? telecomDescription,
})

Returns a new Telecom instance.

Implementation

Telecom({
  this.telecomType,
  this.telecomNumber,
  this.telecomDescription,
});