We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
toString
FunctionException
1 parent 09698ed commit e072ff7Copy full SHA for e072ff7
packages/functions_client/lib/src/types.dart
@@ -31,5 +31,10 @@ class FunctionException {
31
final dynamic details;
32
final String? reasonPhrase;
33
34
- FunctionException({required this.status, this.details, this.reasonPhrase});
+ const FunctionException(
35
+ {required this.status, this.details, this.reasonPhrase});
36
+
37
+ @override
38
+ String toString() =>
39
+ 'FunctionException(status: $status, details: $details, reasonPhrase: $reasonPhrase)';
40
}
0 commit comments