removeUnsupported method
Implementation
List<PosToken> removeUnsupported(Iterable<String> supportedNamespaces) {
return this..removeWhere((e) {
final ns = NamespaceUtils.getNamespaceFromChain(e.network.chainId);
return supportedNamespaces.contains(ns) == false;
});
}