toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data["catLocId"] = this.catLocId;
  data["catId"] = this.catId;
  data["local"] = this.local;
  data["localisedName"] = this.localisedName;
  data["privacyEnforced"] = this.privacyEnforced;
  return data;
}