feat: add playback gain methods to all platforms
This commit is contained in:
parent
7608d79d64
commit
5a547958d5
7 changed files with 75 additions and 0 deletions
|
|
@ -105,4 +105,12 @@ abstract class LiblinphoneFlutterPlatform extends PlatformInterface {
|
|||
Future<double> getMicGain() async {
|
||||
throw UnimplementedError('getMicGain() has not been implemented.');
|
||||
}
|
||||
|
||||
Future<bool> setPlaybackGain(double level) async {
|
||||
throw UnimplementedError('setPlaybackGain() has not been implemented.');
|
||||
}
|
||||
|
||||
Future<double> getPlaybackGain() async {
|
||||
throw UnimplementedError('getPlaybackGain() has not been implemented.');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue