signatoriesExcludeAddress method
Implementation
List<Uint8List> signatoriesExcludeAddress(String signatoryAddress) {
return sortedSignatoriesBytes
.where((e) =>
e.toList(growable: false).toString() !=
Address.decode(signatoryAddress)
.pubkey
.toList(growable: false)
.toString())
.toList(growable: false);
}