barco_event_master 5.0.1 barco_event_master: ^5.0.1 copied to clipboard
A library for controlling Barco Event Master systems via JSON RPC
example/barco_event_master_example.dart
import 'package:barco_event_master/barco_event_master.dart';
Future<void> main() async {
final e2 = EventMaster(ipAddress: '10.10.8.201');
final r = await e2.listDestinations(destinationType: DestinationType.aux);
r.result?.response?.auxDestination.forEach((e) => print(e.id));
}