Company constructor
constructor
@param name String @param id String @param industry String
Implementation
Company({String? name, String? id, String? industry}) {
if (name != null) {
companyMap["name"] = name;
}
if (id != null) {
companyMap["id"] = id;
}
if (industry != null) {
companyMap["industry"] = industry;
}
}