initialize method
Implementation
@override
Future<void> initialize() async {
try {
await methodChannel.invokeMethod<void>('initialize');
} on PlatformException catch (e) {
throw Exception('Failed to initialize SoundTouch: ${e.message}');
}
}