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