DBusSignal constructor

const DBusSignal({
  1. required String? sender,
  2. required DBusObjectPath path,
  3. required String interface,
  4. required String name,
  5. List<DBusValue> values = const [],
})

Implementation

const DBusSignal(
    {required this.sender,
    required this.path,
    required this.interface,
    required this.name,
    this.values = const []});