studentvue 1.0.6 studentvue: ^1.0.6 copied to clipboard
An API based around the official StudentVUE's SOAP API. Automatically makes requests in the form of XML and automatically parses XML response into objects.
example/studentvue_example.dart
import 'package:studentvue/studentvue.dart';
void main() async {
/*
Client client = await StudentVue.login("districtUrl", "username", "password");
print(client.formattedName);
Gradebook gradebook = await client.gradebook();
print(gradebook.courses[0].atGrade.calculatedMark);
*/
await StudentVue.findDistricts(20837);
}