Network constructor

Network({
  1. Telephony? telephony,
  2. Wifi? wifi,
})

constructor for the network class.

Implementation

Network({
  this.telephony,
  this.wifi,
});