UserProfileView constructor

const UserProfileView({
  1. Key? key,
  2. required String userId,
})

Implementation

const UserProfileView({
  super.key,
  required this.userId,
});