rescan method

Future<void> rescan()

Request that the kernel and core OS rescans the contents of the device and update their state to reflect this.

Implementation

Future<void> rescan() async {
  var options = <String, DBusValue>{};
  await _object.callMethod(
      _blockInterfaceName, 'Rescan', [DBusDict.stringVariant(options)],
      replySignature: DBusSignature(''));
}