DBusMethodCall constructor

const DBusMethodCall({
  1. required String? sender,
  2. String? interface,
  3. required String name,
  4. List<DBusValue> values = const [],
  5. bool noReplyExpected = false,
  6. bool noAutoStart = false,
  7. bool allowInteractiveAuthorization = false,
})

Implementation

const DBusMethodCall(
    {required this.sender,
    this.interface,
    required this.name,
    this.values = const [],
    this.noReplyExpected = false,
    this.noAutoStart = false,
    this.allowInteractiveAuthorization = false});