17 lines
420 B
Java
17 lines
420 B
Java
|
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;
|
||
|
}
|
||
|
}
|