EntityGraphDevtoolsChange constructor

const EntityGraphDevtoolsChange({
  1. required EntityGraphDevtoolsChangeCategory category,
  2. required EntityGraphDevtoolsChangeAction action,
  3. required String key,
  4. required EntityGraphDevtoolsValueState valueState,
  5. String? id,
  6. int? beforeCount,
  7. int? afterCount,
  8. Object? before,
  9. Object? after,
})

Implementation

const EntityGraphDevtoolsChange({
  required this.category,
  required this.action,
  required this.key,
  required this.valueState,
  this.id,
  this.beforeCount,
  this.afterCount,
  this.before,
  this.after,
});