isPublicKey function

bool isPublicKey(
  1. String str
)

Implementation

bool isPublicKey(String str) {
  return isByteString(str, length: 66);
}