if (password.length > 64) {
final passwordDigest = md5.convert(password);
password = Uint8List.fromList(passwordDigest.bytes);
}
../../../.pub-cache/hosted/pub.dev/enough_mail-2.1.4/lib/src/private/smtp/commands/smtp_auth_cram_md5_command.dart:50:33: Error: A value of type 'List' can't be assigned to a variable of type 'Uint8List'.
'List' is from 'dart:core'.
'Uint8List' is from 'dart:typed_data'.
password = passwordDigest.bytes;
if (password.length > 64) { final passwordDigest = md5.convert(password); password = Uint8List.fromList(passwordDigest.bytes); }
../../../.pub-cache/hosted/pub.dev/enough_mail-2.1.4/lib/src/private/smtp/commands/smtp_auth_cram_md5_command.dart:50:33: Error: A value of type 'List' can't be assigned to a variable of type 'Uint8List'.