planRemovedMessage function

Widget planRemovedMessage(
  1. BuildContext context,
  2. Notification notification
)

Message builder for NotificationType.planRemoved.

Implementation

Widget planRemovedMessage(BuildContext context, Notification notification) {
  return const Text(
    "You have been removed from your shared plan. But don't worry, we've got you covered - a copy of the plan has been saved to your account.",
  );
}