kdfUuidForType static method

KdbxUuid kdfUuidForType(
  1. KdfType type
)

Implementation

static KdbxUuid kdfUuidForType(KdfType type) {
  final uuid =
      kdfUuids.entries.firstWhere((element) => element.value == type).key;
  return KdbxUuid(uuid);
}