getMateDetails method

  1. @override
Future<void> getMateDetails(
  1. AppProfile mate
)
override

Implementation

@override
Future<void> getMateDetails(AppProfile mate) async {
  AppConfig.logger.t("getMateDetails: ${mate.id} - ${mate.name}");
  if(mate.id != profile.id) {
    Sint.toNamed(AppRouteConstants.matePath(mate.id), arguments: mate.id);
  } else {
    Sint.toNamed(AppRouteConstants.profilePath(mate.id), arguments: mate.id);
  }
}