undo method

ListTile undo(
  1. BuildContext context
)

Implementation

ListTile undo(BuildContext context) {
  return ListTile(
    leading: const Icon(Icons.repeat),
    title: Text(tr('reaction.repost.undo')),
    onTap: () async {
      await plugin.undo(reaction.uri!);
      reaction.count -= 1;
      reaction.uri = null;
      Navigator.pop(context);
    },
  );
}