barco_event_master 2.0.0 barco_event_master: ^2.0.0 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: '37.101.8.90');
final r = await e2.listDestinations();
print(r.result?.response?.toJson());
}