SplitDartEmitter constructor

SplitDartEmitter(
  1. StringSink? _writeImports, {
  2. Allocator allocator = Allocator.none,
  3. bool emitNullSafeSyntax = false,
})

Implementation

SplitDartEmitter(
  this._writeImports, {
  Allocator allocator = Allocator.none,
  bool emitNullSafeSyntax = false,
}) : super(
        allocator: allocator,
        orderDirectives: false,
        useNullSafetySyntax: emitNullSafeSyntax,
      );