RemoteSetting constructor

const RemoteSetting({
  1. required String key,
  2. required dynamic value,
  3. required RemoteSettingsSource source,
  4. required DateTime lastFetched,
  5. DateTime? expiresAt,
  6. bool overridable = true,
})

Implementation

const RemoteSetting({
  required this.key,
  required this.value,
  required this.source,
  required this.lastFetched,
  this.expiresAt,
  this.overridable = true,
});