tesla 0.4.0 tesla: ^0.4.0 copied to clipboard
Control and monitor Tesla Products
import 'dart:async';
import 'package:tesla/tool.dart';
Future main() async {
var client = getTeslaClient();
for (var vehicle in await client.listVehicles()) {
print("Vehicle ${vehicle.displayName} is ${vehicle.state}");
}
client.close();
}