validateAddress function

bool validateAddress(
  1. String address
)

Implementation

bool validateAddress(String address) {
  var bechDecoded = bech32_decode(address);
  return bechDecoded[0] != null;
}