DartXchacha20 constructor
      
      DartXchacha20({ 
    
- required MacAlgorithm macAlgorithm,
- Random? random,
Constructs Xchacha20 with any MacAlgorithm.
Implementation
DartXchacha20({
  required this.macAlgorithm,
  super.random,
}) : super.constructor();