copyWith method

StarRevenueStatistics copyWith({
  1. StatisticalGraph? revenueByDayGraph,
  2. StarRevenueStatus? status,
  3. double? usdRate,
})

Implementation

StarRevenueStatistics copyWith({
  StatisticalGraph? revenueByDayGraph,
  StarRevenueStatus? status,
  double? usdRate,
}) => StarRevenueStatistics(
  revenueByDayGraph: revenueByDayGraph ?? this.revenueByDayGraph,
  status: status ?? this.status,
  usdRate: usdRate ?? this.usdRate,
);