The Firebase Cloud Functions for Flutter implementation for Tizen.
It offers experimental features for using Firebase on Flutter for Tizen. It works by wrapping cross-compiled libraries that are based on the Firebase C++ SDK for Linux.
To use this package, you need to include cloud_functions_tizen as a dependency alongside cloud_functions in your pubspec.yaml. Please note that cloud_functions_tizen implementation is not officially endorsed for cloud_functions.
dependencies:
cloud_functions: 4.0.7
cloud_functions_tizen: ^0.1.0Then you can import cloud_functions in your Dart code:
import 'package:cloud_functions/cloud_functions.dart';The following features are currently unavailable as they're not supported by the version of Firebase C++ SDK for Linux that this plugin is currently based on.
- Using
HttpsCallableOptions#timeoutfor an HttpsCallable instance's options.
- The code and details of
FirebaseFunctionsExceptionaren't properly provided.