statbotics 1.0.1 statbotics: ^1.0.1 copied to clipboard
Statbotics is a Dart library designed to provide developers with an intuitive interface to access and interact with Statbotics data. This library simplifies the process of retrieving detailed informat [...]
example/statbotics_example.dart
import 'package:statbotics/statbotics.dart';
void main() async {
final teamData =
await Statbotics.getTeamData(9738); // Fetch the data of team 9738
print(teamData.name);
}