RemoteSetting constructor
const
RemoteSetting({
- required String key,
- required dynamic value,
- required RemoteSettingsSource source,
- required DateTime lastFetched,
- DateTime? expiresAt,
- bool overridable = true,
Implementation
const RemoteSetting({
required this.key,
required this.value,
required this.source,
required this.lastFetched,
this.expiresAt,
this.overridable = true,
});