copyWith method
Implementation
AssetReportRemoveRequest copyWith(
{String? clientId, String? secret, String? assetReportToken}) {
return AssetReportRemoveRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
assetReportToken: assetReportToken ?? this.assetReportToken);
}