getVersions method

List<String> getVersions(
  1. String id
)

Get all versions of a profile.

Implementation

List<String> getVersions(String id) {
  return _versions[id]?.keys.toList() ?? [];
}