eject method

Future<void> eject()

Ejects media from this drive.

Implementation

Future<void> eject() async {
  await _object.callMethod(
      _driveInterfaceName, 'Eject', [DBusDict.stringVariant({})],
      replySignature: DBusSignature(''));
}