toByteAddress method

List<int> toByteAddress(
  1. String address
)

conver hex string to Byte

Implementation

List<int> toByteAddress(String address) {
  String stripAddress = numbers.strip0x(address.toLowerCase());
  return numbers.hexToBytes(stripAddress);
}