Last updated:
0 purchases
luhn
Luhn check digit algorithm implementation
import 'package:luhn/luhn.dart';
void main() {
// Five digits code
final code = '92812';
// Code with the checksum
print(Luhn.computeAndAppendCheckDigit(code));
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.