withAddress method

Ens withAddress(
  1. Object? _
)

Implementation

Ens withAddress(Object? _) {
  if (_.runtimeType == _i1.EthereumAddress) {
    _ensAddress = _ as _i1.EthereumAddress;
  } else {
    _ensAddress = _i1.EthereumAddress.fromHex('${_ ?? ''}');
  }
  return this;
}