copyWith method

AssetReportRefreshRequestOptions copyWith({
  1. String? clientReportId,
  2. String? webhook,
  3. AssetReportUser? user,
})

Implementation

AssetReportRefreshRequestOptions copyWith(
    {String? clientReportId, String? webhook, AssetReportUser? user}) {
  return AssetReportRefreshRequestOptions(
      clientReportId: clientReportId ?? this.clientReportId,
      webhook: webhook ?? this.webhook,
      user: user ?? this.user);
}