OutputChannel constructor
OutputChannel({})
Implementation
factory OutputChannel({
_i2.String? name,
void Function(_i2.String)? append,
void Function(_i2.String)? appendLine,
void Function(_i2.String)? replace,
void Function()? clear,
void Function()? hide,
void Function()? dispose,
}) =>
OutputChannel._(
name: name,
append: append == null ? null : _i5.allowInterop(append),
appendLine: appendLine == null ? null : _i5.allowInterop(appendLine),
replace: replace == null ? null : _i5.allowInterop(replace),
clear: clear == null ? null : _i5.allowInterop(clear),
hide: hide == null ? null : _i5.allowInterop(hide),
dispose: dispose == null ? null : _i5.allowInterop(dispose),
);