TextDecoderStream constructor

TextDecoderStream([
  1. String? label = 'utf-8',
  2. TextDecoderOptions? options
])

Implementation

factory TextDecoderStream(
        [String? label = 'utf-8', TextDecoderOptions? options]) =>
    TextDecoderStream._(label ?? 'utf-8', options ?? undefined);