fundstrack 0.0.5
fundstrack: ^0.0.5 copied to clipboard
The `fundsTrack` library is a simple and efficient Flutter package designed to help developers integrate SMS-based financial transaction tracking into their applications.
example/example.dart
import 'package:fundstrack/fundstrack.dart';
void main() async {
// Create an instance of FundsTrack
final FundsTrack fundsTrack = FundsTrack();
// Example API key for demo purposes
const String apiKey = 'your-api-key';
// Get SMS using the package
try {
final String smsContent = await fundsTrack.getSms(apiKey);
print('Received SMS: $smsContent');
} catch (e) {
print('Error fetching SMS: $e');
}
}