withHero method

Widget withHero(
  1. Object tag
)

Wrap with hero animation.

Implementation

Widget withHero(Object tag) {
  return Hero(tag: tag, child: this);
}