revert static method

List<String> revert(
  1. Iterable<ID> identifiers
)

Implementation

static List<String> revert(Iterable<ID> identifiers) {
  List<String> array = [];
  for (ID did in identifiers) {
    array.add(did.toString());
  }
  return array;
}