instance property

TableModel instance

Implementation

static TableModel get instance {
  if (_disposed) {
    _instance = TableModel();
  } else {
    _instance ??= TableModel();
  }

  return _instance!;
}