NativeTerminalImage.empty constructor

NativeTerminalImage.empty(
  1. Size size
)

Creates an empty terminal image with the specified dimensions.

All cells are initialized as transparent (null color).

Implementation

factory NativeTerminalImage.empty(Size size) =>
    NativeTerminalImage.filled(size, null);