SettingsSyncFetchResult constructor

const SettingsSyncFetchResult({
  1. required bool success,
  2. UserSyncData? data,
  3. bool isEmpty = false,
  4. String? error,
  5. bool skipRetry = false,
})

Implementation

const SettingsSyncFetchResult({
  required this.success,
  this.data,
  this.isEmpty = false,
  this.error,
  this.skipRetry = false,
});