handle function

Widget handle(
  1. ProfileViewBasic actor
)

Implementation

Widget handle(ProfileViewBasic actor) {
  return Text(
    '@${actor.handle}',
    style: const TextStyle(color: Colors.grey),
  );
}