isAddress function

bool isAddress(
  1. String str
)

Implementation

bool isAddress(String str) {
  return isByteString(str, length: 40);
}