warnings property
List<DiagnosticIssue>
get
warnings
경고만 필터링
Implementation
List<DiagnosticIssue> get warnings =>
issues.where((i) => i.severity == DiagnosticSeverity.warning).toList();
경고만 필터링
List<DiagnosticIssue> get warnings =>
issues.where((i) => i.severity == DiagnosticSeverity.warning).toList();