toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final id = this.id;
  final memberCount = this.memberCount;
  final name = this.name;
  final referenceCount = this.referenceCount;
  final resourceName = this.resourceName;
  final status = this.status;
  final type = this.type;
  final verticalAdsItemVerticalType = this.verticalAdsItemVerticalType;
  return {
    'id': ?id,
    'memberCount': ?memberCount,
    'name': ?name,
    'referenceCount': ?referenceCount,
    'resourceName': ?resourceName,
    'status': ?status,
    'type': ?type,
    'verticalAdsItemVerticalType': ?verticalAdsItemVerticalType,
  };
}