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; }