sendAdminNotification method
- String message
Sends a notification with message to all users.
Implementation
Future<HttpsCallableResult> sendAdminNotification(String message) async {
final adminNotification = instance.httpsCallable('adminNotification');
return adminNotification({"message": message});
}