먼저 푸시 알람은 기본적으로 앱의 상태 즉 포그라운드, 백그라운드, 종료 상태에 모두 다르게 핸들링하게 된다.이것은 flutterfire 에 더 자세히 써져있고 친절하니 공식 문서를 참고하는 것이 좋다.정리해보면 To listen to messages whilst your application is in the foreground, listen to the onMessage stream. final localNotification = Get.find();FirebaseMessaging.onMessage.listen((RemoteMessage rm) async { dev.log("FCM.onMessage.listen()"); dev.log(rm.notification?.title ?..