SignatureResult constructor

SignatureResult({
  1. String? signature,
  2. Uint8List? signatureBytes,
  3. String? publicKey,
  4. String? error,
  5. BiometricError? code,
  6. String? algorithm,
  7. int? keySize,
  8. int? selectedFallbackIndex,
  9. String? selectedFallbackText,
})

Implementation

SignatureResult({
  this.signature,
  this.signatureBytes,
  this.publicKey,
  this.error,
  this.code,
  this.algorithm,
  this.keySize,
  this.selectedFallbackIndex,
  this.selectedFallbackText,
});