scanDriverLicenseCard method
Start the Driver License (DL) Card scanning process
The pin1
and pin2
is required to read the content of the card
Implementation
@override
Future<void> scanDriverLicenseCard({
required String pin1,
required String pin2,
}) {
return methodChannel.invokeMethod('scanDriverLicenseCard', {
'pin_1': pin1,
'pin_2': pin2,
});
}