CredentialsView constructor

const CredentialsView({
  1. Key? key,
  2. Widget? header,
  3. Widget? footer,
  4. Widget? illustration,
  5. Widget? biometricChild,
  6. required Widget child,
})

Implementation

const CredentialsView({
  Key? key,
  this.header,
  this.footer,
  this.illustration,
  this.biometricChild,
  required this.child,
}) : super(key: key);