Checks whether the given address is an X-Address.
static bool isXAddress(String? address) { try { decodeXAddress(address!, null); return true; } catch (e) { return false; } }