Skip to content

Commit

Permalink
Added dtmf options to Call (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin authored Nov 10, 2020
1 parent 1057527 commit f50ec86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/sip_ua_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ class Call {
_session.unmute(audio, video);
}

void sendDTMF(String tones) {
void sendDTMF(String tones, [Map<String, dynamic> options]) {
assert(_session != null, 'ERROR(sendDTMF): rtc session is invalid!');
_session.sendDTMF(tones);
_session.sendDTMF(tones, options);
}

String get remote_display_name {
Expand Down

0 comments on commit f50ec86

Please sign in to comment.