TerminalNativeCell constructor

const TerminalNativeCell({
  1. required String content,
  2. required int width,
  3. required TerminalNativeStyle style,
  4. required TerminalNativeLink link,
  5. required bool isZero,
  6. required bool isEmpty,
  7. required bool hasDrawable,
  8. required List<int> packed,
})

Creates a native cell snapshot.

Implementation

const TerminalNativeCell({
  required this.content,
  required this.width,
  required this.style,
  required this.link,
  required this.isZero,
  required this.isEmpty,
  required this.hasDrawable,
  required this.packed,
});