convert method

  1. @override
Uint8List convert(
  1. String input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
Uint8List convert(String input) {
  return super.convert(
    input.replaceAll(RegExp('[oO]'), '0').replaceAll(RegExp('[IiLl]'), '1'),
  );
}