Sim constructor

Sim({
  1. String? id,
  2. String? provider,
  3. int? slotNumber,
  4. String number = "",
})

Implementation

Sim({
  this.id,
  this.provider,
  this.slotNumber,
  this.number = "",
});