information property
String?
get
information
Returns the first general informational message, or null if there are none.
This is a convenience getter for accessing the most important general informational message when you only need to display a single message to the user.
Implementation
String? get information =>
generalInformations.isNotEmpty ? generalInformations[0] : null;