TelephonySettings constructor

TelephonySettings({
  1. required bool inboundCalling,
  2. required bool outboundCalling,
  3. required bool sms,
})

Implementation

TelephonySettings({
  required this.inboundCalling,
  required this.outboundCalling,
  required this.sms,
});