Display constructor

Display({
  1. Value? output,
  2. Value? errors,
})

Implementation

factory Display({
  $3.Value? output,
  $3.Value? errors,
}) {
  final result = create();
  if (output != null) result.output = output;
  if (errors != null) result.errors = errors;
  return result;
}