isSignature function

bool isSignature(
  1. String str
)

Implementation

bool isSignature(String str) {
  return isByteString(str, length: 128);
}