ProfileResumed constructor

const ProfileResumed({
  1. Key? key,
  2. required String userName,
  3. String? additionalLabel,
  4. required OnClick goProfile,
  5. required OnClick logout,
})

Implementation

const ProfileResumed({
  Key? key,
  required this.userName,
  this.additionalLabel,
  required this.goProfile,
  required this.logout,
}) : super(key: key);