heroWrapper method

dynamic heroWrapper(
  1. Widget image
)

Implementation

heroWrapper(Widget image) {
  if (heroTag == null) return image;
  return Hero(tag: heroTag!, child: image);
}