restricted static method
- OperationDepositMethod method
Returns IsoCodes that aren't available for the provided OperationDepositMethod.
Implementation
static Set<IsoCode> restricted(OperationDepositMethod method) {
return IsoCode.values
.whereNot((e) => available(method).contains(e))
.toSet();
}