ActiveCall constructor
ActiveCall({})
Implementation
ActiveCall({
required String from,
required String to,
this.initiated,
required this.callDirection,
this.customParams
}) : this.to = to.replaceAll("client:", ""),
this.from = from.replaceAll("client:", ""),
toFormatted = _prettyPrintNumber(to),
fromFormatted = _prettyPrintNumber(from);