getCurrentDrive method
Reads the current (or most recent) drive, if any.
Implementation
@override
Future<TightDrive?> getCurrentDrive() async {
final Map<Object?, Object?>? map = await _invoke<Map<Object?, Object?>>(
'getCurrentDrive',
);
return TightDrive.fromMap(map);
}