splitID static method

List<String>? splitID(
  1. String id
)

Implementation

static List<String>? splitID(String id) {
  var parts = split(id, ':', 2);
  return parts.length == 2 ? parts : null;
}