ConsentInfo constructor

const ConsentInfo({
  1. Key? key,
  2. required String nameOfUser,
  3. required ClientApp app,
  4. required bool? previewMode,
  5. required String consentChallenge,
})

Implementation

const ConsentInfo(
    {Key? key,
    required this.nameOfUser,
    required this.app,
    required this.previewMode,
    required this.consentChallenge})
    : super(key: key);