beginCellUpdates static method
Begin a cell update cycle, if one is not in progress already.
Returns true if a cycle was already in progress, false otherwise.
Implementation
static bool beginCellUpdates() {
final isUpdating = _isUpdating;
_isUpdating = true;
return isUpdating;
}