setReconciliationNotificationSounds method

SdkTheme setReconciliationNotificationSounds({
  1. String? success,
  2. String? error,
  3. String? processing,
})

Sets the sounds played for reconciliation notifications. Each argument is a base64-encoded sound file; pass null to mute that kind.

Implementation

SdkTheme setReconciliationNotificationSounds({
  String? success,
  String? error,
  String? processing,
}) {
  _bridge.invoke(
    'setReconciliationNotificationSounds',
    params: <String, dynamic>{
      'success': success,
      'error': error,
      'processing': processing,
    },
  );
  return this;
}