---
title: "How to Use Dart Cloud Functions and the Firebase Admin SDK: A Handbook for Developers"
url: https://daily.dev/posts/how-to-use-dart-cloud-functions-and-the-firebase-admin-sdk-a-handbook-for-developers-ailkvowjb
source_url: https://www.freecodecamp.org/news/how-to-use-dart-cloud-functions-and-the-firebase-admin-sdk
type: article
source: "freeCodeCamp"
published: 2026-05-22T21:11:01.976Z
updated: 2026-05-22T21:11:25.449Z
tags: ["flutter", "firebase", "dart", "firestore", "gcp-cloud-functions"]
reading_time: 66
upvotes: 2
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Use Dart Cloud Functions and the Firebase Admin SDK: A Handbook for Developers

**[freeCodeCamp](https://daily.dev/sources/freecodecamp)** · 66 min read · 2 upvotes · 0 comments

## Summary

Firebase now experimentally supports Dart for Cloud Functions, allowing Flutter developers to write backend code in the same language as their frontend. This comprehensive guide covers the full-stack Dart architecture: how Dart Cloud Functions work (using `fireUp`, `onRequest`, `onCall`), the Dart Firebase Admin SDK for Firestore and Authentication operations, step-by-step setup and local emulator usage, deploying to production, calling functions from Flutter, and creating a shared Dart package to eliminate data model duplication between client and server. Key limitations are clearly documented: only HTTP and callable functions can be deployed (no background triggers yet), `httpsCallable` by name doesn't work (use `httpsCallableFromURL` instead), and Dart functions don't appear in the Firebase Console.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://www.freecodecamp.org/news/how-to-use-dart-cloud-functions-and-the-firebase-admin-sdk>

## Similar posts on daily.dev

- [Using Flutter with Firebase: A Developer's Guide](https://daily.dev/posts/using-flutter-with-firebase-a-developer-s-guide-jbpavk3vl) · Flutter Community · 0 upvotes · 0 comments
- [That’s a wrap: Everything Flutter at Google Cloud Next](https://daily.dev/posts/that-s-a-wrap-everything-flutter-at-google-cloud-next-hw0b8rqeg) · Flutter · 4 upvotes · 0 comments

---

Tags: [#flutter](https://daily.dev/tags/flutter), [#firebase](https://daily.dev/tags/firebase), [#dart](https://daily.dev/tags/dart), [#firestore](https://daily.dev/tags/firestore), [#gcp-cloud-functions](https://daily.dev/tags/gcp-cloud-functions)

[View this post on daily.dev](https://daily.dev/posts/how-to-use-dart-cloud-functions-and-the-firebase-admin-sdk-a-handbook-for-developers-ailkvowjb)
