toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final blackOwned = this.blackOwned;
final latinoOwned = this.latinoOwned;
final name = this.name;
final promotionsConsent = this.promotionsConsent;
final smallBusiness = this.smallBusiness;
final veteranOwned = this.veteranOwned;
final womenOwned = this.womenOwned;
return {
'blackOwned': ?blackOwned,
'latinoOwned': ?latinoOwned,
'name': ?name,
'promotionsConsent': ?promotionsConsent,
'smallBusiness': ?smallBusiness,
'veteranOwned': ?veteranOwned,
'womenOwned': ?womenOwned,
};
}