FirebaseFunctionsDynamicModel class

Class for retrieving value data of dynamic through Functions.

Inheritance

Constructors

FirebaseFunctionsDynamicModel(String endpoint, [dynamic initialValue])
Class for retrieving value data of dynamic through Functions.

Properties

disposed bool
True if the model is Disposed.
no setterinherited
endpoint String
Firebase Functions endpoint.
finalinherited
functions → FirebaseFunctions
Get an instance of Firebase Functions.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
hasListeners bool
Whether any listeners are currently registered.
no setterinherited
notifyOnChangeValue bool
If this value is true, the change will be notified when value itself is changed.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value ↔ dynamic
The current value stored in this notifier.
getter/setter pairinherited

Methods

addListener(VoidCallback listener) → void
Register a closure to be called when the object changes.
inherited
call({DynamicMap? parameters}) Future
Functions can be called to retrieve the data.
inherited
dispose() → void
Discards any resources used by the object. After this is called, the object is not in a usable state and should be discarded (calls to addListener and removeListener will throw after the object is disposed).
inherited
filterOnCall(dynamic loaded) → dynamic
You can describe a process to filter the loaded data.
inherited
fromResponse(dynamic value) → dynamic
You can describe the process of converting the response dynamic data to TValue data.
override
initState() → void
The method to be executed when initialization is performed.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notifyListeners() → void
Call all the registered listeners.
inherited
onCatchResponse(HttpsCallableResult response) → void
You can describe the process when you get the response.
inherited
onDidLoad() Future<void>
Callback after the load has been done.
inherited
onDidSave() Future<void>
Callback after the save has been done.
inherited
onLoad() Future<void>
Callback before the load has been done.
inherited
onSave() Future<void>
Callback before the save has been done.
inherited
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that are notified when the object changes.
inherited
toNotifier<V>(V converter(dynamic value)) ValueNotifier<V>
Generates a value notifier.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited