defaultAvatarTap method

void defaultAvatarTap(
  1. String? userId, {
  2. bool isSelf = false,
})

Implementation

void defaultAvatarTap(String? userId, {bool isSelf = false}) {
  if (isSelf) {
    gotoMineInfoPage(context);
  } else {
    goToContactDetail(context, userId!);
  }
}