Angular @Input Optional code example
Example: how to make input in angular optional
export class ChildComponent {
@Input() showName?: boolean;
constructor() { }
}
export class ChildComponent {
@Input() showName?: boolean;
constructor() { }
}