studentvueclient 0.0.7 copy "studentvueclient: ^0.0.7" to clipboard
studentvueclient: ^0.0.7 copied to clipboard

a client library for the student vue grade system

example/studentvueclient_example.dart

import 'package:studentvueclient/studentvueclient.dart';

void main() async {
  var client = StudentVueClient(
      'my username', 'my password', 'my studentvue mobile app url',
      mock: true);
  print('loading data');
  var grades = await client.loadGradebook();
  print(grades.toString());
  // this is static because you don't need a username and password for it
  var studentData = await StudentVueClient.loadDistrictsFromZip('zip code',
      callback: (pctLoaded) {
    print('${pctLoaded * 100}% loaded');
  }, mock: false);
  print(studentData.toString());
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

a client library for the student vue grade system

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

dio, html_unescape, xml

More

Packages that depend on studentvueclient