SyncIncompatibility constructor

const SyncIncompatibility({
  1. required String code,
  2. required String message,
})

Records a refusal the server sent as code, explained by message.

Implementation

const SyncIncompatibility({
  required this.code,
  required this.message,
});