sendDigits method
Send digits to the call. Returns true if successful, false otherwise. See twilio_js.Call.sendDigits
Implementation
@override
Future<bool?> sendDigits(String digits) async {
if (_jsCall != null) {
_jsCall!.sendDigits(digits);
return true;
}
return false;
}