PostgresChangePayload constructor

PostgresChangePayload({
  1. required String schema,
  2. required String table,
  3. required DateTime commitTimestamp,
  4. required PostgresChangeEvent eventType,
  5. required Map<String, dynamic> newRecord,
  6. required Map<String, dynamic> oldRecord,
  7. required dynamic errors,
})

Implementation

PostgresChangePayload({
  required this.schema,
  required this.table,
  required this.commitTimestamp,
  required this.eventType,
  required this.newRecord,
  required this.oldRecord,
  required this.errors,
});