Cómo llamar a un método en el proveedor de notificador de estado

/// To call a method 
context.read(providerVariable.notifier).methodToCall();

/// In our case to call the state notifier
context.read(jokesNotifierProvider.notifier).getJoke();
Zany Zebra