RemoteConfigValue<T> class
A generic wrapper for remote config values.
This class provides type-safe access to remote configuration values. It wraps the actual value and ensures type safety when accessing it.
Example:
final value = RemoteConfigValue<String>('Hello');
print(value.value); // Outputs: Hello
Constructors
- RemoteConfigValue(T value)
- Creates a new RemoteConfigValue instance.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → T
-
The actual value of the remote config parameter.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited