toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (all != null) 'all': all!,
      if (appType != null) 'appType': appType!.toJson(),
      if (auctionType != null) 'auctionType': auctionType!.toJson(),
      if (location != null) 'location': location!.toJson(),
      if (platform != null) 'platform': platform!.toJson(),
      if (securityType != null) 'securityType': securityType!.toJson(),
    };