planRemovedMessage function

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

Message builder for NotificationType.planRemoved.

Implementation

Widget planRemovedMessage(BuildContext context, Notification notification) {
  return Text(
    context.t.notification_planRemoved,
  );
}