invokeMethodBool method
Implementation
Future<bool> invokeMethodBool(FlutterSoundPlayerCallback callback,
String methodName, Map<String, dynamic> call) async {
call['slotNo'] = findSession(callback);
return await _channel.invokeMethod(methodName, call) as bool;
}