public override void CopyFrom(BindableObject bindableObject) { base.CopyFrom(bindableObject); LottieButtonStyle style = bindableObject as LottieButtonStyle; if (style == null) { return; } LottieUrl = style.LottieUrl; PlayRange = style.PlayRange; }
public LottieButtonStyle(LottieButtonStyle style) : base(style) { }