My Customer model has no onConflict specified in the SupabaseSerializable, which results in the following runtime error:
lib/brick/adapters/customer_adapter.g.dart:116:7: Error: The non-abstract class 'CustomerAdapter' is missing implementations for these members:
- SupabaseAdapter.onConflict
Current behavior: When onConflict is not specified in the SupabaseSerializable, the generator does not override the onConflict field in the OfflineFirstWithSupabaseAdapter.
Expected behavior: The generator overrides the field as follows, when onConflict is not specified:
My
Customer
model has noonConflict
specified in theSupabaseSerializable
, which results in the following runtime error:Current behavior: When
onConflict
is not specified in theSupabaseSerializable
, the generator does not override theonConflict
field in theOfflineFirstWithSupabaseAdapter
.Expected behavior: The generator overrides the field as follows, when
onConflict
is not specified:related: https://github.com/GetDutchie/brick/pull/422