SupabaseRealtimePayload constructor

SupabaseRealtimePayload({
  1. required String commitTimestamp,
  2. required String eventType,
  3. required String schema,
  4. required String table,
  5. required Map<String, dynamic>? newRecord,
  6. required Map<String, dynamic>? oldRecord,
  7. @Deprecated("The new RLS real-time server no longer sends the required data") required List<String> primaryKeys,
})

Implementation

SupabaseRealtimePayload({
  required this.commitTimestamp,
  required this.eventType,
  required this.schema,
  required this.table,
  required this.newRecord,
  required this.oldRecord,
  @Deprecated(
    "The new RLS real-time server no longer sends the required data",
  )
      required this.primaryKeys,
});