RemoteConfigStatus constructor

const RemoteConfigStatus({
  1. bool wasRequested = false,
  2. bool isCached = false,
  3. DateTime? lastFetched,
  4. DateTime? lastCacheTime,
  5. bool fetchSuccessful = false,
  6. String? fetchError,
})

Implementation

const RemoteConfigStatus({
  this.wasRequested = false,
  this.isCached = false,
  this.lastFetched,
  this.lastCacheTime,
  this.fetchSuccessful = false,
  this.fetchError,
});