enableCustomSound static method

Future<void> enableCustomSound()

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");
}