setReconciliationNotificationSounds method
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;
}