three_commas 0.2.1
three_commas: ^0.2.1 copied to clipboard
3Commas API wrapper in Dart
example/three_commas_example.dart
import 'package:three_commas/three_commas.dart';
void main() async {
final api = ThreeCommasApi(key: '', secret: '');
/// Get last 20 active deals
final activeDeals = await api.getDeals({'limit': 20, 'scope': 'active'});
print(activeDeals);
}