UserPushSoundSetRequest constructor Null safety
Implementation
UserPushSoundSetRequest(String sound, {String? userId})
: super(userId: userId) {
url = 'users/${userId ?? state.userId}/push_preference';
body = {'push_sound': sound};
}
UserPushSoundSetRequest(String sound, {String? userId})
: super(userId: userId) {
url = 'users/${userId ?? state.userId}/push_preference';
body = {'push_sound': sound};
}