CodeSettings constructor

const CodeSettings({
  1. required bool allowFlashcall,
  2. required bool currentNumber,
  3. required bool allowAppHash,
  4. required bool allowMissedCall,
  5. required bool allowFirebase,
  6. List<Uint8List>? logoutTokens,
  7. String? token,
  8. required bool appSandbox,
})

Code Settings constructor.

Implementation

const CodeSettings({
  required this.allowFlashcall,
  required this.currentNumber,
  required this.allowAppHash,
  required this.allowMissedCall,
  required this.allowFirebase,
  this.logoutTokens,
  this.token,
  required this.appSandbox,
}) : super._();