DebugConsole constructor

DebugConsole({
  1. void append(
    1. String
    )?,
  2. void appendLine(
    1. String
    )?,
})

Implementation

factory DebugConsole({
  void Function(_i2.String)? append,
  void Function(_i2.String)? appendLine,
}) =>
    DebugConsole._(
      append: append == null ? null : _i5.allowInterop(append),
      appendLine: appendLine == null ? null : _i5.allowInterop(appendLine),
    );