SynthizerScope constructor

const SynthizerScope({
  1. required Widget child,
  2. int bufferCacheMaxSize = gigabyte,
  3. String? synthizerFilename,
  4. Key? key,
})

Create an instance.

Implementation

const SynthizerScope({
  required this.child,
  this.bufferCacheMaxSize = gigabyte,
  this.synthizerFilename,
  super.key,
});