SasKeysExchangedView constructor

const SasKeysExchangedView({
  1. dynamic key,
  2. required String sender,
  3. required bool isVerifier,
  4. required dynamic emojis,
  5. required dynamic onCancel(
    1. dynamic
    ),
  6. required dynamic onMatch(
    1. dynamic
    ),
  7. required dynamic onMismatch(
    1. dynamic
    ),
})

Implementation

const SasKeysExchangedView({
  super.key,
  required this.sender,
  required this.isVerifier,
  required this.emojis,
  required this.onCancel,
  required this.onMatch,
  required this.onMismatch,
});