play static method

void play()

Implementation

static void play() {
  FlutterRingtonePlayer player = FlutterRingtonePlayer();
  player.play(
    android: AndroidSounds.notification,
    ios: IosSounds.glass,
    looping: true,
    asAlarm: false,
  );
}