fromBits static method

IsoKeyLength fromBits(
  1. int bits
)

Implementation

static IsoKeyLength fromBits(int bits) => IsoKeyLength.values.firstWhere((IsoKeyLength value) => value.bits == bits, orElse: () => throw ArgumentError("invalid key length=$bits"));