randomContextId property

String randomContextId

Implementation

String get randomContextId {
  final random = Random.secure();
  return hex.encode(List<int>.generate(32, (i) => random.nextInt(256)));
}