signatoriesExcludeBytes method
Implementation
List<Uint8List> signatoriesExcludeBytes(List<int> signatoryBytes) {
return sortedSignatoriesBytes
.where((e) =>
e.toList(growable: false).toString() !=
signatoryBytes.toList(growable: false).toString())
.toList(growable: false);
}