description function

Widget description(
  1. ProfileView actor,
  2. BuildContext context
)

Implementation

Widget description(ProfileView actor, BuildContext context) {
  String desc = actor.description ?? "";
  return HyperLink(context, desc).withLink;
}