vnpttech_pkg 1.0.9
vnpttech_pkg: ^1.0.9 copied to clipboard
A Dart library package that provides API communication to connect, configure and control VNPT Technology network devices. This package was developed by Software Technology Center (STC).
example/vnpttech_pkg_example.dart
import 'package:vnpttech_pkg/vnpttech_pkg_base.dart';
Future<void> main() async {
var apiEndpoint = VNPTTechAPI.shared;
var registerRequest = {
'appId': '<YOUR_APP_ID>',
'appVersion': '<YOUR.APP.VERSION>'
};
await apiEndpoint.register(registerRequest);
}