instance property
TableModel
get
instance
Implementation
static TableModel get instance {
if (_disposed) {
_instance = TableModel();
} else {
_instance ??= TableModel();
}
return _instance!;
}