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

discontinued

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

// ignore_for_file: avoid_print
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
10
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
Repository
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on free_mobile