ProfileView constructor

const ProfileView({
  1. Key? key,
  2. required ProfileDataManager manager,
  3. required BaseScreen baseScreen,
})

Implementation

const ProfileView({
  Key? key,
  required this.manager,
  required this.baseScreen,
}) : super(key: key);