heroTag method

Niku heroTag(
  1. String heroTag
)

Apply Hero to widget

Equivalent to:

Hero(
  tag: input
)

Implementation

Niku heroTag(String heroTag) {
  _widget = Hero(
    tag: heroTag,
    child: _widget,
  );

  return this;
}