Parameter constructor Null safety

Parameter(
  1. String content
)

Implementation

factory Parameter(String content) {
  // TODO: parse declarations, analyzer doesn't provide a nice api for this
  // that I can find.
  return Parameter._(content);
}