ModemGsm constructor

ModemGsm({
  1. String? apn,
  2. String? number,
  3. String? username,
  4. String? password,
})

Returns a new ModemGsm instance.

Implementation

ModemGsm({
  this.apn,
  this.number,
  this.username,
  this.password,
});