OutboxEvent constructor

const OutboxEvent({
  1. required int id,
  2. required String localId,
  3. required String tableName,
  4. required String operation,
  5. required Map<String, dynamic> payload,
  6. required String state,
  7. required DateTime createdAt,
  8. required DateTime clientUpdatedAt,
  9. required int attemptCount,
  10. DateTime? lastAttemptAt,
  11. String? lastError,
  12. String? serverId,
})

Implementation

const OutboxEvent({
  required this.id,
  required this.localId,
  required this.tableName,
  required this.operation,
  required this.payload,
  required this.state,
  required this.createdAt,
  required this.clientUpdatedAt,
  required this.attemptCount,
  this.lastAttemptAt,
  this.lastError,
  this.serverId,
});