toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final availabilities = this.availabilities;
  final launchedToAll = this.launchedToAll;
  final name = this.name;
  final resourceName = this.resourceName;
  final taxonomyType = this.taxonomyType;
  final userInterestId = this.userInterestId;
  final userInterestParent = this.userInterestParent;
  return {
    'availabilities': ?availabilities,
    'launchedToAll': ?launchedToAll,
    'name': ?name,
    'resourceName': ?resourceName,
    'taxonomyType': ?taxonomyType,
    'userInterestId': ?userInterestId,
    'userInterestParent': ?userInterestParent,
  };
}