twilio_flutter 0.0.1 copy "twilio_flutter: ^0.0.1" to clipboard
twilio_flutter: ^0.0.1 copied to clipboard

outdated

A Package that helps with twilio API.

Twilio_Flutter #

A Flutter package for both android and iOS which helps developers with Twilio API services.

Usage #

Example

To use this package :

dependencies:
  flutter:
    sdk: flutter
  twilio_flutter:

How to use #

TwilioFlutter twilioFlutter; //  Create a new Object


@override
  void initState() { // Initialize with values
    twilioFlutter = TwilioFlutter(
        accountSid: '*************************', // replace *** with Account SID
        authToken: 'xxxxxxxxxxxxxxxxxx',  // replace xxx with Auth Token
        twilioNumber: '+...............'  // replace .... with Twilio Number
        );

    super.initState();
  }


    twilioFlutter.sendSMS(
        toNumber: '+................', messageBody : 'hello world'); //Use sendSMS with the recipient number and message body.


    twilioFlutter.changeTwilioNumber('+.........'); // To change the twilio number


Features #

[x] Sms [ ] Call [ ] WhatsApp

More features will get added soon. Contributions are also welcome.

Pull Requests #

Pull requests and contributions highly encouraged .Here are some basic rules to follow to ensure timely addition of your request:

  1. Match coding style (braces, spacing, etc.) This is best achieved using Reformat Code feature of Android Studio CMD+Option+L on Mac and CTRL + ALT + L on Linux + Windows .
  2. If its a feature, bugfix, or anything please only change code to what you specify.
  3. Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)
  4. Pull requests must be made against develop branch. Any other branch (unless specified by the maintainers) will get rejected.
  5. Check for existing issues first, before filing an issue.
  6. Make sure you follow the set standard as all other projects in this repo do
  7. Have fun!

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

104
likes
0
pub points
94%
popularity

Publisher

unverified uploader

A Package that helps with twilio API.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, meta

More

Packages that depend on twilio_flutter