ezviz_flutter 1.0.0 copy "ezviz_flutter: ^1.0.0" to clipboard
ezviz_flutter: ^1.0.0 copied to clipboard

A comprehensive Flutter/Dart library for EZVIZ camera API integration with support for device management, live streaming, PTZ control, and more.

example/ezviz_flutter_example.dart

import 'package:ezviz_flutter/ezviz_flutter.dart';

void main() {
  // Example of instantiating the EzvizClient
  // Replace with your actual appKey and appSecret
  final client = EzvizClient(
    appKey: 'YOUR_APP_KEY',
    appSecret: 'YOUR_APP_SECRET',
  );
  print('EzvizClient instantiated. App Key: ${client.appKey}');

  // Example usage of a service (optional, uncomment and adapt)
  // final authService = AuthService(client);
  // authService.login().then((_) {
  //   print('Login attempt done (or token fetched if already authenticated).');
  // }).catchError((e) {
  //   print('Login error: $e');
  // });
}
3
likes
0
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter/Dart library for EZVIZ camera API integration with support for device management, live streaming, PTZ control, and more.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

equatable, flutter, http, json_annotation, meta

More

Packages that depend on ezviz_flutter