fcm_push 1.0.0  fcm_push: ^1.0.0 copied to clipboard
fcm_push: ^1.0.0 copied to clipboard
A Dart interface to Firebase Cloud Messaging (FCM) for Android and iOS
fcm-push #
A Dart interface to Firebase Cloud Messaging (FCM) for Android and iOS
You can use fcm-push either as commandline tool or you can use it as a library.
Prerequisite #
- Setup FB
- Firebase Cloud Messaging step by step
- Android Application - Quick start
 (Maybe someone want's to create a Flutter-Sample)
Command-line #
Activate fcm-push:
pub globale activate fcm_push
Create fcm-push.yaml:
fcm.server.key: <your server key>
token: <eithe your phone-ID or a registered subject>
Send your message: fcm-push 'Hello Android' 'Dart rocks!'
Usage: fcm-push <options> title [body]
    -h, --help           Shows this message
    -s, --settings       Prints settings
    -t, --token          subject or token
    -f, --config_file    Change config file
    -v, --loglevel       Sets the appropriate loglevel
                         [info, debug, warning]
Sample:
    Send message:
        fcm-push 'Hello Android' 'Dart rocks!'
As library #
import 'package:fcm_push/fcm_push.dart';
final String serverKey = "";
final String token = "";
Future<int> main() async {
    final FCM fcm = new FCM(serverKey);
    
    final Message fcmMessage = new Message()
        ..to = token
        ..title = _config.title
        ..body = _config.body
    ;
    
    final String messageID = await fcm.send(fcmMessage);
}
Links #
License #
Copyright 2017 Michael Mitterer (office@mikemitterer.at),
IT-Consulting and Development Limited, Austrian Branch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
   http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.
If this plugin is helpful for you - please (Circle) me,
Follow me on Twitter or star this repo here on GitHub.