PlaceholderResolutionException constructor
Creates an exception with a reason, placeholder, and optional value.
Implementation
PlaceholderResolutionException(
this.reason,
this.placeholder, [
String? value,
]) : values = value != null ? [value] : const [],
super(_buildMessage(reason, value != null ? [value] : const []));