1 package com.airbnb.lottie.model.content; 2 3 4 import androidx.annotation.Nullable; 5 6 import com.airbnb.lottie.LottieDrawable; 7 import com.airbnb.lottie.animation.content.Content; 8 import com.airbnb.lottie.model.layer.BaseLayer; 9 10 public interface ContentModel { toContent(LottieDrawable drawable, BaseLayer layer)11 @Nullable Content toContent(LottieDrawable drawable, BaseLayer layer); 12 } 13