toList static method
Address string list to EthereumAddress list
Implementation
static List<EthereumAddress> toList(List<String> val) =>
List<EthereumAddress>.generate(
val.length,
(int index) => EthereumAddress.fromString(val[index]),
);