profile property

Widget get profile

Implementation

Widget get profile {
  return InkWell(
    child: widget,
    onTap: () async {
      Navigator.push(
        context,
        MaterialPageRoute(builder: (context) => Profile(actor: actor.did)),
      );
    },
  );
}