Update documentation for PlatformException.stacktrace (#114028)

* Update message_codec.dart

* remove whitespace

* Update doc comment

* Update message_codec.dart
This commit is contained in:
Jonas Uekötter 2022-11-22 23:54:21 +01:00 committed by GitHub
parent 94b9fa4111
commit 6a26305d1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,6 +187,10 @@ class PlatformException implements Exception {
/// ```
///
/// In the cases described above, the content of [stacktrace] will be the unprocessed output of calling `toString()` on the exception.
///
/// MacOS, iOS, Linux and Windows don't support querying the native stacktrace.
///
/// On custom Flutter embedders this value will be null on platforms that don't support querying the call stack.
final String? stacktrace;
@override