getDisplayString abstract method

String getDisplayString(
  1. {required bool withNullability,
  2. bool multiline = false}
)

Returns the presentation of this element as it should appear when presented to users.

If withNullability is true, then NullabilitySuffix.question and NullabilitySuffix.star in types will be represented as ? and *. NullabilitySuffix.none does not have any explicit presentation.

If withNullability is false, nullability suffixes will not be included into the presentation.

If multiline is true, the string may be wrapped over multiple lines with newlines to improve formatting. For example function signatures may be formatted as if they had trailing commas.

Clients should not depend on the content of the returned value as it will be changed if doing so would improve the UX.

Implementation

String getDisplayString({
  required bool withNullability,
  bool multiline = false,
});