CellData constructor

CellData({
  1. required int foreground,
  2. required int background,
  3. required int flags,
  4. required int content,
})

Implementation

CellData({
  required this.foreground,
  required this.background,
  required this.flags,
  required this.content,
});