jsonUpdatesFor method

List<JsonUpdateClause> jsonUpdatesFor(
  1. T model,
  2. JsonUpdateBuilder<T>? builder
)
inherited

Implementation

List<JsonUpdateClause> jsonUpdatesFor(
  T model,
  JsonUpdateBuilder<T>? builder,
) {
  final support = JsonUpdateSupport<T>(definition);
  return support.buildJsonUpdates(model, builder);
}