ProfilePage constructor

const ProfilePage({
  1. Key? key,
  2. @PageParam.new("user_id") required String userId,
})

Implementation

const ProfilePage({
  super.key,
  @PageParam("user_id") required this.userId,
});