SecretHeroConfig constructor

SecretHeroConfig({
  1. required String token,
  2. required String userId,
  3. required String displayName,
  4. String? iconImage,
  5. String? language,
  6. String? country,
  7. bool? isLayoutLTR,
  8. SecretHeroTheme? theme,
})

Implementation

SecretHeroConfig({
  required this.token,
  required this.userId,
  required this.displayName,
  this.iconImage,
  this.language,
  this.country,
  this.isLayoutLTR,
  this.theme,
});