TextStreamReader constructor
TextStreamReader({})
Implementation
factory TextStreamReader({
_i2.bool? atEndOfLine,
_i2.bool? atEndOfStream,
_i2.String Function(_i2.num)? read,
_i2.String Function()? readAll,
_i2.String Function()? readLine,
void Function(_i2.num)? skip,
void Function()? skipLine,
_i2.num? column,
_i2.num? line,
void Function()? close,
}) =>
TextStreamReader._(
atEndOfLine: atEndOfLine,
atEndOfStream: atEndOfStream,
read: read == null ? null : _i3.allowInterop(read),
readAll: readAll == null ? null : _i3.allowInterop(readAll),
readLine: readLine == null ? null : _i3.allowInterop(readLine),
skip: skip == null ? null : _i3.allowInterop(skip),
skipLine: skipLine == null ? null : _i3.allowInterop(skipLine),
column: column,
line: line,
close: close == null ? null : _i3.allowInterop(close),
);