enableCustomSound static method
Custom sound is enabled by default. However, if you have turned it off, you can revert it using this function
Implementation
static Future<void> enableCustomSound() async {
if(!Platform.isAndroid) return;
await _channel.invokeMethod("Pushe.enableCustomSound");
}