Xamarin Plugin.Toast System.NullReferenceException

Xamarin Plugin.Toast System.NullReferenceException

我正在尝试使用 Plugin.Toast Nuget-Package 在 Xamarin.Forms 中制作吐司消息。

Class 用于调用 Toast:

using Plugin.Toast;
using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Essentials;

namespace toast.service
{
    public class toast
    {

        public void toastWarning(string msg)
        {
          CrossToastPopUp.Current.ShowToastWarning(msg, Plugin.Toast.Abstractions.ToastLength.Short);
        }

    
    }
}

调用 toast 代码:

service.toast toast = new service.toast();
toast.toastWarning("test");

但我总是遇到这个错误: System.NullReferenceException: 'Object reference not set to an instance of an object.'

无需使用插件。 Xamarin 提供 Android.Widget.Toast 库来显示消息。

   Toast.MakeText(this, "Received intent!", ToastLength.Short).Show();