driverInfo method

Info driverInfo(
  1. int id
)

Gets information about a particular driver.

Implementation

Info driverInfo(int id) {
  final pointer = _driverInfo(id);
  return Info._(pointer.ref);
}