FunctionResult class

Contains methods for obtaining the return value of a cloud function.

final String result = functionResult.getValue();
Annotations

Constructors

FunctionResult(String _result)
const

Properties

hashCode int
Generates the hash code for a FunctionResult object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getMap() Map<String, dynamic>
getValue() String
Obtains the return value after a cloud function is executed. The return value is of the string type.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Converts FunctionResult object to string.
override

Operators

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