issueSummary property

String? get issueSummary

Returns the list of localized issue messages joined by newline if the result is an error, or null if the result is a success.

Implementation

String? get issueSummary => match(
  (rawIssues) => rawIssues.localizedSummary,
  (_) => null,
);