driverId method

int driverId(
  1. String shortname
)

Looks up the ID number for a driver based upon its short name. The ID number is need to open the driver or get info on it.

Implementation

int driverId(String shortname) {
  return _driverId(shortname.toNativeUtf8());
}