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.
1 parent 22cd12d commit c3a1ccfCopy full SHA for c3a1ccf
packages/functions_client/lib/src/types.dart
@@ -1,3 +1,4 @@
1
+// ignore_for_file: public_member_api_docs, sort_constructors_first
2
import 'dart:convert';
3
import 'dart:typed_data';
4
@@ -32,4 +33,8 @@ class FunctionException {
32
33
final String? reasonPhrase;
34
35
FunctionException({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