SecureRandom constructor

SecureRandom(
  1. String algorithmName
)

Implementation

factory SecureRandom(String algorithmName) {
  // Basic factory logic orthrow if not implemented
  throw UnsupportedError(
      'Implementation required via registry or manual instantiation');
}