constructor()

in src/BaseDataProvider.ts [31:46]


    constructor() {
        //Initialize the class with default values so that missing values from manifest can be handled
        this.displayName = "";
        this.version = "";
        this.description = "";
        this.publisher = "";
        this.categories = [];
        this.tags = [];
        this.galleryBanner = {theme : "",color: ""} 
        this.imagePath = "";
        this.license = "";
        this.bugs = "";
        this.homepage = "";
        this.repository = "";
        this.preview = "";
    }