Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 발로란트 api dart
- Architectural overview
- AnimationController
- dart new
- dart.dev
- leetcode dart
- 롤 api dart
- 파이썬 부동소수점
- 파이썬
- docker overview
- flutter android 폴더
- flutter ios 폴더
- flutter
- tft api dart
- flutter bloc
- widget
- keychain error
- lol api dart
- swift 동시성
- dart new 키워드
- riot api dart
- dart
- valorant api dart
- com.google.GIDSignIn
- flutter statefulwidget
- generate parentheses dart
- swift concurrency
- 롤토체스 api dart
- PlatformException(sign_in_failed
- flutter widget
Archives
- Today
- Total
aspe
Flutter - DiagnosticsNode 본문
value의 diagnotics(진단) data를 정의합니다.
profile modes와 debug를 위해, DiagnosticsNode는 toStringDeep를 사용하여 높은 퀄리티의 multiline string dump를 제공합니다. 코어 멤버는, name, toDescription, getProperties, value, and getChildren입니다. 다른 모든 멤버들은 어떻게 toStringDeep와 디버깅 툴이 출력의 형태를 정해야하는지에 대한 힌트를 제공합니다.
relesase modes에서는 보존되는 정보가 훨씬 적으며 일부 정보는 전혀 프린트되지 않을 수 있습니다.
Impelementers
생성자
required String? name,
DiagnosticsTreeStyle? style,
bool showName = true,
bool showSeparator = true,
String? linePrefix
})
String message,
{
DiagnosticsTreeStyle style = DiagnosticsTreeStyle.singleLine,
DiagnosticLevel level = DiagnosticLevel.info,
bool allowWrap = true
}
)
Diagnostics가 디테일한 이름이나 값들을 가지지 않고, string 메세지만 포함합니다.
'Flutter > API' 카테고리의 다른 글
Flutter - StatefulWidget (0) | 2023.02.17 |
---|---|
Flutter - Object (0) | 2023.02.17 |
Flutter - BuildContext (0) | 2023.02.17 |
Flutter - RenderObjectWidget (0) | 2023.02.17 |
Flutter - Element (0) | 2023.02.17 |
Comments