resetAudioSession method
reset audio session, it will stop and start audio session
Return true indicates success, otherwise false.
Implementation
@override
Future<bool> resetAudioSession() async {
return await methodChannel
.invokeMethod<bool>('startAudio')
.then<bool>((bool? value) => value ?? false);
}