firebase-functions-interop icon indicating copy to clipboard operation
firebase-functions-interop copied to clipboard

Firebase Functions Interop Library for Dart.

Results 22 firebase-functions-interop issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm facing problems using the Dart [fcm_push](https://pub.dartlang.org/packages/fcm_push) or the pubsub push in gcloud. I installed the [gcloud](https://github.com/dart-lang/gcloud), [googleapis ](https://pub.dartlang.org/packages/googleapis)and googleapis_auth dependencies, and set up the ServiceAccountCredentials to get the AuthClient,...

I'm not sure if this library is still being maintained, but would you consider supporting null safety?

Hi, I would like to access the `context.rawRequest['ip']` from a callable but it appears that you're not exposing the `rawRequest` in `CallableContext`. I realise I could get the IP by...

Error: Could not read source directory. Remove links and shortcuts and try again.

I was about to port my firebase functions from TypeScript to Dart but one of concerns I have now is debugging I run this command `tsc -w | firebase emulators:start...

```dart await database.ref('queue').transaction( (currentData) { print(currentData); if (currentData.length.isOdd) { print('aborting!'); return TransactionResult.abort; } print('hand waving done'); return TransactionResult.success(currentData); }, ); ``` I'm running into a compile issue with this code....

Thanks for this great package! I am having one problem. I am getting an error when using setList to write a list of maps. When I try and write to...

Greetings. Please I need some help: Can I do "Collection group queries" to Firestore from Cloud Function using firebase_functions_interop? Thanks in advance.

According to the pubspec rules, the firebase-admin-interop: ^1.0.0 spec does not allow the new 2.0.0 version to be used with -functions-interop. Could a new version be published with an expanded...