scanVin static method

ScanResult scanVin(
  1. String rawText
)

Scans and parses a 17-character Vehicle Identification Number (ISO 3779).

Implementation

static ScanResult scanVin(String rawText) {
  return VinParser.parse(rawText);
}