toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final email = this.email;
final listingCount = this.listingCount;
final name = this.name;
final type = this.type;
return {
'email': ?email,
'listingCount': ?listingCount,
'name': ?name,
'type': ?type,
};
}