getContractAddresses method

Set<String> getContractAddresses()

Gets all unique contract addresses in this batch.

Implementation

Set<String> getContractAddresses() {
  return _authorizations.map((auth) => auth.address).toSet();
}