free_mobile 6.0.0 copy "free_mobile: ^6.0.0" to clipboard
free_mobile: ^6.0.0 copied to clipboard

discontinued
outdated

Send SMS messages to your Free Mobile device. A simple and free way to monitor your applications using a Free Mobile account.

example/main.dart

import 'package:free_mobile/free_mobile.dart';

/// Sends an SMS notification.
Future<void> main() async {
  try {
    final client = Client('your account identifier', 'your API key');
    // For example: Client('12345678', 'a9BkVohJun4MAf')

    await client.sendMessage('Hello World!');
    print('The message was sent successfully');
  }

  on ClientException catch (err) {
    print('An error occurred: ${err.message}');
    print('From: ${err.uri}');
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherbelin.io

Send SMS messages to your Free Mobile device. A simple and free way to monitor your applications using a Free Mobile account.

Homepage

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on free_mobile