what-the-bank/sources/com/airbnb/lottie/model/content/BlurEffect.java

17 lines
420 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.model.content;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
/* loaded from: classes.dex */
public class BlurEffect {
final AnimatableFloatValue blurriness;
public BlurEffect(AnimatableFloatValue animatableFloatValue) {
this.blurriness = animatableFloatValue;
}
public AnimatableFloatValue getBlurriness() {
return this.blurriness;
}
}