blob: 1b72bb3065d6502e2c9ec06cb479bfbae44b56d8 [file] [log] [blame]
package com.airbnb.lottie.model.animatable;
import androidx.annotation.Nullable;
public class AnimatableTextProperties {
@Nullable public final AnimatableColorValue color;
@Nullable public final AnimatableColorValue stroke;
@Nullable public final AnimatableFloatValue strokeWidth;
@Nullable public final AnimatableFloatValue tracking;
public AnimatableTextProperties(@Nullable AnimatableColorValue color,
@Nullable AnimatableColorValue stroke, @Nullable AnimatableFloatValue strokeWidth,
@Nullable AnimatableFloatValue tracking) {
this.color = color;
this.stroke = stroke;
this.strokeWidth = strokeWidth;
this.tracking = tracking;
}
}