toCloudFunctionResult method
Implementation
CloudFunctionResult toCloudFunctionResult() {
assert(length == 1);
final key = keys.first;
return CloudFunctionResult(key != 'error', this[key]!.toString());
}
CloudFunctionResult toCloudFunctionResult() {
assert(length == 1);
final key = keys.first;
return CloudFunctionResult(key != 'error', this[key]!.toString());
}