code method
Gets the CRC-32 code for a String
Parameters:
inputis the string to hash- The
encodingis the encoding to use. Default isinput.codeUnits
Implementation
@pragma('vm:prefer-inline')
int code(String input, [Encoding? encoding]) =>
string(input, encoding).number();