public static Task ApplyDrawableAsync(this IVisualElementRenderer renderer,
                                       BindableProperty imageSourceProperty,
                                       Context context,
                                       Action <Drawable> onSet,
                                       Action <bool> onLoading             = null,
                                       CancellationToken cancellationToken = default(CancellationToken))
 {
     return(renderer.ApplyDrawableAsync(null, imageSourceProperty, context, onSet, onLoading, cancellationToken));
 }