stashCommittedState method
void
stashCommittedState()
Implementation
void stashCommittedState(
String tableName,
dynamic primaryKey,
Map<String, dynamic>? committedRowJson,
) {
if (primaryKey == null) return;
(_committedStash[tableName] ??= {})[primaryKey] = _StashedCommit(
committedRowJson,
);
}