hero method

Widget hero(
  1. String? tag
)

Implementation

Widget hero(String? tag) => tag != null ? Hero(tag: tag, child: this) : this;