isMD5 static method

bool isMD5(
  1. String s
)

检验字符串是否是MD5

Implementation

static bool isMD5(String s) => hasMatch(s, r'^[a-f0-9]{32}$');