OrbitMutation constructor

OrbitMutation({
  1. required OrbitStore store,
  2. required DateTime timestamp,
  3. required int listenerCount,
  4. String? action,
  5. Map<String, Object?>? before,
  6. Map<String, Object?>? after,
  7. Object? error,
  8. StackTrace? errorStackTrace,
})

Implementation

OrbitMutation({
  required this.store,
  required this.timestamp,
  required this.listenerCount,
  this.action,
  this.before,
  this.after,
  this.error,
  this.errorStackTrace,
});