RefreshResponse constructor

RefreshResponse({
  1. bool success = false,
  2. String? error,
  3. String? userId,
  4. List<String> refreshedSources = const [],
  5. List<String> failedSources = const [],
})

Implementation

RefreshResponse({
  this.success = false,
  this.error,
  this.userId,
  this.refreshedSources = const [],
  this.failedSources = const [],
});