validate if String is a valid plate number
static bool isValidPlate(String plate) => RegExp(r'^[A-Z]{2}[-]?\d{4}$').hasMatch(plate);